It only appears to be a problem in IE 8 and less. I see that the template for the:
Code:
<!--HTML for the Drop Down Menus associated with Top Menu Bar-->
<!--They should be inserted OUTSIDE any element other than the BODY tag itself-->
<!--A good location would be the end of the page (right above "</BODY>")-->
is the same on both pages. But the way the script is interpreting it is different on the two pages. So that might have something to do with when the script is invoked, that might be different. But first let's take care of an obvious problem. All of the class="ddsubmenustyle" UL tags are invalid. For example the first one:
Code:
<ul id="WhatsNewSubMenu" class="ddsubmenustyle" text-align:left
>
That highlighted section does nothing good and might be causing the problem. It should either be dropped, or made valid style:
Code:
<ul id="WhatsNewSubMenu" class="ddsubmenustyle" style="text-align:left;"
>
Either way, all 8 of them have that. It could be part of what's causing the problem. Fix them all and see.
The browser cache may need to be cleared and/or the page refreshed to see changes.
And additionally, since this is some kind of a template, the server cache might need to be cleared.
If it doesn't seem to work, leave the changes in place so I can have a look at it.
Bookmarks