Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

At http://www.shieldscompany.com, the main (blue) product menu uses a sprite and has sub-menus. Our programmer set it up so that the sub-menus are relative to the top of the browser, rather than under the sprite. On the site's sub-pages, the sub-menus appear correctly, but on the home page they appear behind a large rotating graphic.

Can someone take a look at http://www.shieldscompany.com/css/nav.css and help me understand how to change this so it works properly?

share|improve this question

migrated from webmasters.stackexchange.com Nov 29 '12 at 1:04

1 Answer

The problem is your flash image slider has pushed down the blue main nav on your home page. The sub menu ul elements are absolutely positioned relative to the top of the page. This works on your sub pages but not your home page since the menu has further down below the flash slider. The CSS looks like it's been pieced together and your menu shouldn't work like that. How much have you paid your programmer to work on the menu have you spent 1 hour on him? Will a $5 compliant well coded menu such as http://codecanyon.net/item/css3-mega-drop-down-menu/126387 be good enough to replace your menu?

Also while it's good to use sprites, if the only change in the graphic is on mouse hover. You can use a pure CSS3 menu and higlight the menu item on hover. You'll reduce your server load a bit which is the whole reason for using sprites, in which case if you keep yours why not include the red menu and other static graphics into one large sprite?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.