Works in IE 7 but in IE 6 the "content" section does not show the background. Also, the menus don't respond the same either. Been working on this quite a while and just can't seem to get it. When I fix one problem it always creates another. I am hoping one of you experienced types can give me a clue. Thanks in advance.
you have already positioned you entire content to be centered with your "#container" styles - so here you will not have to again tell the content to be centered. You also have this positioned absolutely with the height set to auto - which I think IE6 has problems with.
Working with the web developer toolbar I played with your CSS and changed the following to this:
Now, I can't tell if that fixes everything in IE, since this is Firefox plugin - but it replicated your content in FF. I'm pretty sure this will fix your issue with the background in IE6.
Can't hurt to try ;P It may screw up some stuff, but a few minor adjustments should be enough to fix.
I'm sorry I don't have time to check out the menu issue right now - but one recommendation is to find a javascript that allows your flash content to automatically play because in IE6 I got 3-4 warning asking if I wanted to play the content before I could even view the site.
Site is at <http://projects.drewpearceonline.com/AOC/>
JB
background:url(images/bgtile.jpg);
background-color:#000;
background-repeat:repeat-x;
color:#666;
font-family:Helvetica, Verdana, Arial, sans-serif;
or do
background:url(images/bgtile.jpg) repeat-x #000;
let me know if that fixes it. sometimes ie needs to have everything declared separately same for font declaration.
Hope it helps you out.
#content {background:transparent url(images/content-bg.jpg) repeat-y scroll 0 0;
height:auto;
left:12px;
margin:0 auto;
position:absolute;
top:287px;
width:1000px;
z-index:1;
}
you have already positioned you entire content to be centered with your "#container" styles - so here you will not have to again tell the content to be centered. You also have this positioned absolutely with the height set to auto - which I think IE6 has problems with.
Working with the web developer toolbar I played with your CSS and changed the following to this:
Now, I can't tell if that fixes everything in IE, since this is Firefox plugin - but it replicated your content in FF. I'm pretty sure this will fix your issue with the background in IE6.
Can't hurt to try ;P It may screw up some stuff, but a few minor adjustments should be enough to fix.
I'm sorry I don't have time to check out the menu issue right now - but one recommendation is to find a javascript that allows your flash content to automatically play because in IE6 I got 3-4 warning asking if I wanted to play the content before I could even view the site.