Re: DHTML Menus
2008/04/25 07:52
Viewed 2499 times
Replies: 1/2

I am having the exact same problem. Please let me know if you found a way to get around this!

Ashwin

Re[2]: DHTML Menus
2008/06/07 09:11
Viewed 1814 times
Replies: 1/1

well, I know declaring the menu

<ul id="menu" style="visibility: hidden">

will make it invisible, the only issue with that is that the page will have blank space for that time frame where the menu code would go. IE:

<ul id="menu" style="visibility: hidden">
<li>list</li>
<li>list</li>
<li>list</li>
</ul>
Welcome to my site!

Would have your page come up like:
==================
(blank line)
(blank line)
(blank line)

Welcome to my page!
----------------------------------------
Where as right now your page has (blank line) replaced with the actual list items.

last
Re[3]: DHTML Menus
2008/06/07 09:26
Viewed 2786 times
Replies: 0/0

Try "display: none" instead of "visibility: hidden".

last
Google