PDA

View Full Version : A little CSS Question



Lapras
August 21st, 2006, 10:58
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.

Paul White
August 21st, 2006, 14:46
If I understand correctly you could use this:

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

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