I've just built a website for myself using iWeb09. The website includes an opaque box in the navigation bar on each page. I finished building it and was happy with the finished product until I checked it in IE.
Unfortunaty all the opaque boxes become exploded and mess up the navigation bar. After spending all morning researching and learning some CSS I've found the problem is with the opacity setting and the fact IE doesn't know what to do with it. The problem can be fixed by replacing
opacity: 0.65; with filter:alpha(opacity=65);
but then it no longer works in any other browser. So I tried using both which then messes up IE again since I guess it is seeing the opacity setting again and going into a fit. I then tried using the -ms- -o- -moz- and -webkit- to make the terms browser specific, it worked! All my browsers were working until I found out the Firefox I was using was v3. When I tried 3.5 the boxes were solid, some research lead me to find the -moz- had been made obsolet in 3.5
.
So now I almost have it working other than Firefox 3.5. What I need to do is use the opacity command with the IE specific filter:alpha(opacity=65); but somehow get IE to ignore the opacity command. I don't know how to do this?
Can anyone shed some light? Thanks.
Unfortunaty all the opaque boxes become exploded and mess up the navigation bar. After spending all morning researching and learning some CSS I've found the problem is with the opacity setting and the fact IE doesn't know what to do with it. The problem can be fixed by replacing
opacity: 0.65; with filter:alpha(opacity=65);
but then it no longer works in any other browser. So I tried using both which then messes up IE again since I guess it is seeing the opacity setting again and going into a fit. I then tried using the -ms- -o- -moz- and -webkit- to make the terms browser specific, it worked! All my browsers were working until I found out the Firefox I was using was v3. When I tried 3.5 the boxes were solid, some research lead me to find the -moz- had been made obsolet in 3.5

So now I almost have it working other than Firefox 3.5. What I need to do is use the opacity command with the IE specific filter:alpha(opacity=65); but somehow get IE to ignore the opacity command. I don't know how to do this?
Can anyone shed some light? Thanks.