Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript display menu at top Reply To: display menu at top

#147345
Paulie_D
Member

At the moment the default ‘styling’ of the div is display:none. That’s what it says in your CSS stylesheet.

At some point the javascript takes over and changes that setting to allow the div to show up (display:block) .

It might be that just changing that default property to display:block in your stylesheet will solve the whole thing…but you are the only one who can do that and it’s not guaranteed to be the final solution.