There is no difference between the two page's code that would cause this actually. But if your arrow images are slow to load- hence displacing the menu item temporarily, try giving them an explicit width/height attribute inside base.css:
Code:
.downarrowpointer{ /*CSS for "down" arrow image added to top menu items*/
padding-left: 4px;
border: 0;
width: 20px;
height: 15px;
}
.rightarrowpointer{ /*CSS for "right" arrow image added to drop down menu items*/
position: absolute;
padding-top: 3px;
left: 100px;
border: 0;
width: 15px;
height: 15px;
}
Bookmarks