Quote:
|
Originally Posted by yonni
The problem with closing the <a> tag after the text is that it then counts the text as a link and underlines it in blue. It's just easier to close it after the opening tag of the <div>
|
If you are using the 'a' tag, then, I'm afraid, it IS a link because it links you to another page.
If you want not to show the underline then do your code something like this.
<ul id="nav">
<li><a href="login.php">Login</a></li>
<li><a href="faq.php">FAQ</a></li>
</ul>
ul#nav a {
text-decoration : none;
}
Bazz