
Originally Posted by
amberbam
Thanks, that's helpful.
Do you have any idea why my menu css isn't working in IE? I have 2 separate css documents for the menu. It's not just the gradient of the menu that's not working, it's simply not pulling anything from those css docs.
Edit: Actually, that's not completely true. It seems to be selectively picking which elements to pick up from the 2 CSS docs. I'm sure its hard for you to know what I mean without seeing all the different docs and code.
It seems to be working in IE9 except the menu colours are missing because you haven't set up suitable fallbacks as I mentioned before.
e.g.
Code:
.dj-mtmenu li.hover{
background: url(image for ie goes here);
background: -webkit-gradient(radial, 50% 100%, 10, 50% 50%, 90, from(rgba(236,23,23,1)), to(rgba(110,0,0, 1)) );
background: -moz-radial-gradient(center 80px 45deg, circle cover, rgba(236,23,23,1) 0%, rgba(110,0,0, 1) 100%);
}
You seem to be including the menu code twice although one version looks slightly different I think. In the menu code you have corrupted this section with half written rules:
Code:
.dj-mtmenu {
padding: 0;
margin: 0;
list-style:none;
height: 40px;
background : -webkit-
position: relative;
z-index: 500;
font-family: Arial, Helvetica, sans-serif;
width: 958px;
gradient(linear, left top, left bottombottom, from(rgb(111,111,111)), to(rgb(40,40,40)));
background : -moz-linear-gradient(top, rgb(111,111,111), rgb(40,40,40));
border-top: 1px solid #939393;
position: relative;
margin-bottom: 30px;
text-align: center;
}
Bookmarks