can someone tell me how floating menu's work such as on this site. is it all in css?
cheer
philleep
No, it's all javascript. I'm not going to try to dig reallydeep, but essentially as your mouse passes over a certain point, a hidden menu appears. The reason the code isn't apparent is that it's all in another file linked to in these lines:
[html]<SCRIPT language=JavaScript src="http://www.candlelighters.org/js/menu_cccf.js" type=text/javascript></SCRIPT>
<SCRIPT language=JavaScript src="http://www.candlelighters.org/js/mmenu.js" type=text/javascript></SCRIPT>
[/html]There are simpler ways to do this same effect. I don't think you can do it all with css.
Jared