PDA

View Full Version : If I want to add another drop down category


AngelaN
Aug-06-2007, 09:32 AM
how would I go about adding that?!? I want to add a teen & then a maternity category to my portfolio section of my navigation bar? I appreciate the help.

Allen
Aug-06-2007, 09:49 AM
how would I go about adding that?!? I want to add a teen & then a maternity category to my portfolio section of my navigation bar? I appreciate the help.
In your header nav code insert the bold.

<li><a class="drop" href="/Portfolio">Portfolio
<!--[if IE 7]><!--></a><!--<![endif]-->
<!--[if lte IE 6]><table><tr><td><![endif]-->
<ul>
<li><a href="/Portfolio/358154">Infants</a></li>
<li><a href="/Portfolio/358164">Children</a></li>
<li><a href="/Portfolio/358165">Family</a></li>
<li><a href="/Portfolio/xxxxxx">Teen</a></li>
<li><a href="/Portfolio/xxxxxx">Maternity</a></li>
</ul> <!--[if lte IE 6]></td></tr></table></a><![endif]-->
</li>

AngelaN
Aug-06-2007, 10:12 AM
Thank you Allen.