Announcement
Collapse
No announcement yet.
Strange Buttons in Opera
Collapse
X
-
In what version of Opera? I viewed the page in Opera 9.01 and there were no yellow lines under the buttons.
Add this to your CSS
A line height is getting applied to your images. Try this
Code:<ul id="nav"> <li><a href="index.php"><img src="buttons/home.png" alt="" /></a></li> <li><a href="profiles.php"><img src="buttons/theband.png" alt="" /></a></li> <li><a href="photos.php"><img src="buttons/photos.png" alt="" /></a></li> <li><a href="gigguide.php"><img src="buttons/gigs.png" alt="" /></a></li> <li><a href="contact.php"><img src="buttons/contact.png" alt="" /></a></li> <li><a href="credits.php"><img src="buttons/credits.png" alt="" /></a></li> </ul>
Code:#nav { margin:0; padding:0; list-style:none; text-align:center; } #nav li { display:inline; line-height:0px; font-size:0; }
Last edited by _Aerospace_Eng_; Sep 25, 2006, 04:37 PM.||||If you are getting paid to do a job, don't ask for help on it!||||
Comment