hi,
I don't understand why I have this blue border around the links images in my page.
I've set outline:none border:0 but still it is there (only in Firefox and IE)... it is very strange.
http://www.alimdardesign.com/fabulicious/features.html
Thanks
hi,
I don't understand why I have this blue border around the links images in my page.
I've set outline:none border:0 but still it is there (only in Firefox and IE)... it is very strange.
http://www.alimdardesign.com/fabulicious/features.html
Thanks
Because you have an image inside a link, this border comes up, try this css:
a img
{
border:none;
}
This is standart behaviour of images inside the a-tags
<img border="0" />
or
a img {
border:none;
}
every linked image has a blue border around it. do fix this web designers generally use the following css
a img
{
border : 0;
}
also try :
img
{
border: 0;
}