-
1. Re: How do I get the links to have an underline?
Rik Ramsay Mar 6, 2012 1:29 PM (in response to John Nez) -
2. Re: How do I get the links to have an underline?
John Waller Mar 6, 2012 1:33 PM (in response to John Nez)Your CSS is correctly set to underline all the menu items in the unordered list.
However your HTML markup is askew. I suspect you're working exclusively in Design View in DW?
Anyway, in Code View, change
<ul class="nav">
<li><a href="Booksfile:///Extra/Jonz2012site/slideshow%20again.html">Books</a></li>
<li><a href="Slideshowsfile:///Extra/Jonz2012site/slideshow%20again.html">Slideshows</a></li>
<li><a href="#">Portfolio 1</a><a href="#">Portfolio 2</a><a href="#">Black & White</a></li>
<li><a href="#">Historical </a><a href="#">Digital Sihouettes</a><a href="#">Studio Links</a><a href="#">School Visits</a></li>
</ul>
to
<ul class="nav">
<li><a href="Booksfile:///Extra/Jonz2012site/slideshow%20again.html">Books</a></li>
<li><a href="Slideshowsfile:///Extra/Jonz2012site/slideshow%20again.html">Slideshows</a></li>
<li><a href="#">Portfolio 1</a></li>
<li><a href="#">Portfolio 2</a></li>
<li><a href="#">Black & White</a></li>
<li><a href="#">Historical </a></li>
<li><a href="#">Digital Sihouettes</a></li>
<li><a href="#">Studio Links</a></li>
<li><a href="#">School Visits</a></li>
</ul>
-
3. Re: How do I get the links to have an underline?
John Nez Mar 6, 2012 1:42 PM (in response to John Waller)Thanks everyone! That did the trick... I'd never have figured that out myself.



