Home › Forums › CSS › IE 6 Layout / Float issue › Re: IE 6 Layout / Float issue
May 17, 2009 at 6:37 pm
#57646
Participant
Hey man,
First thing: You should Validate your CSS and HTML to make sure everything is valid. That should fix your "crashing IE6"
I’m assuming this is the h2 you are talking about:
Code:
h2.home{
color: #696969;
width:100%;
text-decoration: none;
padding-top:10px;
font-size:14px;
line-height:22px;
}
color: #696969;
width:100%;
text-decoration: none;
padding-top:10px;
font-size:14px;
line-height:22px;
}
If you want the Sidebar to come up next to the h2, I wouldn’t have the h2 be 100%.
Also, you should not have Paragraphs inside of H2’s:
Code:
h2.home p{
padding:10px 0px 10px 0px;
}
padding:10px 0px 10px 0px;
}
I don’t have time to read through the rest of the code. Let me know how that works.