Topic: css question

In Internet Explorer, the following page looks just fine:
http://www.bydebrasdesigns.com/bb
But in Mozilla, the grey border only shows up around the header.
I am not very experienced in css, so what do I have to fix?

Thanks

FluxBB - v1.4.8

2

Re: css question

I just get a parser error.

Re: css question

I know. I will fix it in about an hour when I get home.

FluxBB - v1.4.8

Re: css question

Check at http://bydebrasdesigns.com/baseball first. It's the same, just static pages...

FluxBB - v1.4.8

5

Re: css question

As usual it is actually IE that is getting it wrong. The border is on #wrap and the content inside it is floated. You therefore have to clear the floats to get #wrap to wrap around the floated content. Thats what all those clearer divs you see in PunBB do.

Try

#wrap:after {
    content: "";
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0.0;
    overflow:hidden;
    visibility: hidden;
    clear: both;
    }

Re: css question

Yeah, you are a genius! Thanks for the help lol

FluxBB - v1.4.8