Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

3 Coumn Layout bugs, need help!

Status
Not open for further replies.

waiterm

Programmer
May 17, 2004
236
GB
Hi guys,

I'm trying to create a basic 3 column layout, and having googled and tried endlessly am still having problems.

There's no content as such but take a look at:


Basically the problem I'm having is when the browser window is resized in both IE and Firefox, the right hand column bleeds into the content and eventually all the way over to the left column. IE doesn't support min width but is there a hack for this?

A direct link to the stylesheet is
Any help would be gratefully appreciated.


Rob Waite
 
One workaround is to use the underscore hack along with IE's "expression" function like Dan described in thread215-1182806


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Hi,

I've tried using the expression function, however my page is resizing down to 800px and then crashing, this is the code I'm using...

Code:
#sizer { min-width:800px; width:expression(document.body.clientWidth < 800? "800px": "auto" ); }



Rob Waite
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top