JS menu won't show but shows

techgeek1499

New Member
Messages
18
Reaction score
0
Points
0
My website is http://www.techcorner.pcriot.com/reviews/reviews.php

that's the page that I have the problem. The menu seems to like show up then disappear and I don't want that to happen.

If you need any code just ask but if I have my mouse over it when I refresh it stays, but it becomes smaller.


THIS HAS BEEN FIXED! [FIXED]
 
Last edited:

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
You are talking about the sliding menu on the left that says 'Archive', right?
 

techgeek1499

New Member
Messages
18
Reaction score
0
Points
0
You are talking about the sliding menu on the left that says 'Archive', right?

I have made a test page in html and the menu displays correctly, but I don't know how to get everything working on the php page. I do have like 6 scripts and 1 css document is that a lot for the .php file to go through?
Edit:
Sorry for the double post, but I went to browser shots and some websites showed the menu. I still can't fix it.
 
Last edited:

descalzo

Grim Squeaker
Community Support
Messages
9,373
Reaction score
326
Points
83
As a first step, I would remove the stylesheet from the middle of the HTML and either put it in the <HEAD> or in a .css file.

Secondly, it seems that the menu is being created before the whole page loads, and when other pieces load, it throws off the location of the menu. The menu should be created in an onload event handler.
 
Top