Forums

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

Home Forums CSS can’t figure out how to code this… Re: can’t figure out how to code this…

#54098
ikthius
Member
"Ramesh" wrote:
still i can see the css code is same like it was before you just apply my property to your css

if you go here and check the css file http://siephed.org/47/style.css

ramesh, you need to give people time to get on with their life, they will code when they got time, or ask back when they can’t do it.


@siephe
, you do need to clear the floats, your featured & honour are floated, so you need to clear these.

you could do it with inline CSS, by adding this line of HTML after the div after the table:
<div style="clear:both"></div>

or you could add a clear class to your CSS like so:
.clear
{
clear:both;
}

and your HTML should look like this:
<div class="clear"></div>
although I like to add a comment into it like so: <!– force for IE –></div> I noticed a problem with a line I made and it never worked in IE without something in the div, so a comment done the job to force IE to behave

good luck