• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

A little CSS Question

Lapras

New Member
Hello, on one of my websites, there has been a little issue that has been bothering me. I use graphics as navigation buttons. The problem is that because they are links they are outlined on some browsers, such as firefox. I could try to deactive underlining for the enter page, but then it would affect text links which I want to be underlined.
 
If I understand correctly you could use this:

<style type="text/css">
#nav a {
border: none;
}
</style>

<div id="navigation">
[image links here]
</div>
 
Back
Top