Hi everyone!
I just made a website for my brother and I had this amazing idea to use a jQuery dropdown menu for one of the nav links, "Gallery".
So, I implemented the dropdown menu and everything looked fantastic until I went to work and opened the page on IE7. Now, I either have to find a fix for it or completely rearrange how my nav system is going to be displayed.
Have a look at the page in Firefox and then in IE7 (or IE8 in compatibilty mode) and you'll see the issue. The reason I can't have the content image as a background-image is because it dynamically changes each time you visit the page (or refresh).
NOTE: I've tried this code and it doesn't work:
1 2 3 4 5 6 7 | $(function() { var zIndexNumber = 1000; $('div').each(function() { $(this).css('zIndex', zIndexNumber); zIndexNumber -= 10; }); }); |