IE Explorer 8 requires refresh to display nav properly
Permalink
Hello all.
I am having problems with a nav block template that I use on the footer of my website.
When I first load the website it displays as a list (see screen shot 1) and then if I do a refresh of the page it displays correctly (see screen shot 2).
All other browsers Chrome, Safari and Firefox work fine without requiring a refresh.
Any help would be most appreciated.
I am having problems with a nav block template that I use on the footer of my website.
When I first load the website it displays as a list (see screen shot 1) and then if I do a refresh of the page it displays correctly (see screen shot 2).
All other browsers Chrome, Safari and Firefox work fine without requiring a refresh.
Any help would be most appreciated.
Another possibility:
If javascript is used to style the footer or an element of the footer, then it could be the page (en footer) has not yet been loaded fully when the script is called.
Put every javascript between:
If javascript is used to style the footer or an element of the footer, then it could be the page (en footer) has not yet been loaded fully when the script is called.
Put every javascript between:
$(document).ready(function(){ // here js code });
Hi Guys,
Thanks for responding.I have managed to figure out a little more, bearing in mind my php skills are some what limited.
It appears to be the main navigation menu which is causing problems. I cant seem to separate the main menu from the footer menu, even though I am using class for the main menu and id for the footer menu. I am wanting to use the main menu because it is responsive with the rest of the website.
There is no js in the footer menu.
Here is the link:http://www.rotortheory.com.au
You will see on the page that there is a test form as well because some how the main menu was also causing ie explorer to not show check boxes and bullets.Hopefully this part is fixed now.
Any help here would be greatly appreciated. Thanks again for the responses.
Thanks for responding.I have managed to figure out a little more, bearing in mind my php skills are some what limited.
It appears to be the main navigation menu which is causing problems. I cant seem to separate the main menu from the footer menu, even though I am using class for the main menu and id for the footer menu. I am wanting to use the main menu because it is responsive with the rest of the website.
There is no js in the footer menu.
Here is the link:http://www.rotortheory.com.au
You will see on the page that there is a test form as well because some how the main menu was also causing ie explorer to not show check boxes and bullets.Hopefully this part is fixed now.
Any help here would be greatly appreciated. Thanks again for the responses.
Rony