Web design problem with text-decoration: none; in firefox.link's wont change?
At the minute i'm building a web page, i'm still designing the home page in the Safari browser, everything is perfect... but when i display it in Firefox a few of the anchor images in the navigation bar's have got a blue border around them, ive tried text decoration none but they wont seem to go and it's gettin on my nerves, i can handle quite a few css hack's in internet explorer, but this problem ive got now puzzles me , its like the blue link border around my navigation images are stuck on, which look's a mess, any of you got idea's ? thank for your time.
Public Comments
- You need to set the border in the image tag equal to 0. For example: <img src="http://www.example.com" width="100px" height="100px" border="0" /> Hope this helps.
- a img, a:link img, a:hover img, a:visted img, a:active img{ text-decoration: none; }
- In the <img> tag, add a "border="0" For example: <img src="image.jpg" width="200" height="200" border="0">
- First of all dont even listen to the guys who are telling you to style in the html. your problem is probley not the links but the image. img { border:none; } That Should dot It
- The guy above me got it right: img { border: 0; } in your css file.
Powered by Yahoo! Answers