PDA

View Full Version : Navigation menu help (Dropping/expanding)



hibs1875
January 17th, 2008, 07:14
Hi guys. NeThis newbie to webdesign is looking for some assistance.

While browsing the Internet I came across this website (http://avillafan.com) and really like there navigation menu on the left hand side.

Does anyone know how I would go about writing/creating this?

Many thanks.

JohnN
January 17th, 2008, 11:03
it can be done with css like this:

a{
text-decoration:none;
}

a:hover{
text-decoration:underline;
}

hibs1875
January 17th, 2008, 12:07
I mean when you click on a catergory on the nav menu it expands down and more links appear.

iBrightDev
January 17th, 2008, 12:12
go to dynamic drive.com, and look up the menus there
it is pretty much a modified tree menu. i got the same sort of thing going on here...

http://www.stgphoto.com/Gallery.php

JohnN
January 17th, 2008, 13:37
<a onclick="document.getElementById('data').style.display=''">click!</a>
<span id='data' style='display:hidden'>hidden :D </span>

should work. might not, didnt really check it.