Tim Wolak wrote:
> Morning all,
>
> I tried what David has suggested and its still letting the page 
> stretch way out. Any ideas?  Also one of my pages has a back line on 
> it and for the life of me I can't figure out where its coming from and 
> its in every browser except IE.
>
> Thanks,
> Tim
>
> Main: http://dev.howsmykiddriving.org
> Page with line: http://dev.howsmykiddriving.org/aboutus.php
>
>
>     Then assign a min-width and max-width to that id. IE/6 does not
>     support min/max. There are a number of workarounds, including
>     ie-expessions and min/max javascript (Google for same).
>     BTW, I got a 404 on the About page. Don't forget to validate the
>     html and css.
>
>
>


In your CSS file you wrote:
pagewrap {
    min-width: 680px;
    max-width: 900px;
    }
Change it to:
#pagewrap {
    min-width: 680px;
    max-width: 900px;
    }

And adjust the widths of the content to meet expectation without content 
cross-over overlap at 680 and 900.
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to