• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

Navigation menu help (Dropping/expanding)

hibs1875

New Member
Hi guys. NeThis newbie to webdesign is looking for some assistance.

While browsing the Internet I came across this website and really like there navigation menu on the left hand side.

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

Many thanks.
 
it can be done with css like this:

a{
text-decoration:none;
}

a:hover{
text-decoration:underline;
}
 
<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.
 
Back
Top