Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS IE6 div positioning Re: IE6 div positioning

#57692
apostrophe
Participant

Ok, box model problem. So how about this:

Code:
#header_links {
float:left;
padding:0 0 0 10px;
width:220px;
}

#header_rechts {
float:left;
margin:15px 0 0;
width:auto;
}

#FeaturedEventDetails {
float:left;
width:490px;
}

p.FeatureTitle {
color:#FF3366;
font-size:2em;
margin-left:220px;
text-align:left;
}

p.FeatureContent {
color:white;
font-size:2em;
margin-left:240px;
text-align:left;
}

a#MeerInfo {
color:yellow;
font-size:2em;
margin:0 0 10px 220px;
}

You may need to reduce the width of #header_links but that’s your call.