HighDots Forums  

Two Column Layout Issue

Cascading Style Sheets Layout/presentation on the WWW (comp.infosystems.www.authoring.stylesheets)


Discuss Two Column Layout Issue in the Cascading Style Sheets forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
ZZ
 
Posts: n/a

Default Two Column Layout Issue - 11-17-2008 , 03:47 PM







I am having a bugger of a time figuring out why firefox won't
recognize my faux two-column layout. When the content column
("contcol") gets filled in with more content than the "menucol", both
"expand" properly in IE (it recognizes the background from "page" and
makes the column look expanded). In forefox (3) it doesn't do it -
the "menucol" ends with the content and the white box of the "contcol"
continues by itself. Here is the setup and CSS I am using:

<div id="page">
<div id="menucol"></div>
<div id="contcol"></div>
</div>


CSS:

#page{
width: 975px;
background-color: #CECC99;
}
#menucol{
float: left;
width: 290px;
background-color: #CECC99;
padding-top: 10px;
text-align: center;
}
#contcol{
float: right;
width: 684px;
background: #fff;
border-left: 1px solid #000;
}

Any help would be appreciated!

Thanks ahead;

Tom


Reply With Quote
  #2  
Old   
dorayme
 
Posts: n/a

Default Re: Two Column Layout Issue - 11-17-2008 , 04:16 PM






In article <okl3i49o169rjegdpt95rl2luoqvv50tht (AT) 4ax (DOT) com>,
ZZ <noway (AT) wpenewon (DOT) org> wrote:

Quote:
I am having a bugger of a time figuring out why firefox won't
recognize my faux two-column layout. When the content column
("contcol") gets filled in with more content than the "menucol", both
"expand" properly in IE (it recognizes the background from "page" and
makes the column look expanded). In forefox (3) it doesn't do it -
the "menucol" ends with the content and the white box of the "contcol"
continues by itself.
IE (at least 6) behaves differently to FF in this matter. FF is strictly
correct. You need to either put overflow: hidden; or overflow: auto; on
your container or else style a clear into a last element in the
container. Even going so far as to create an element for this purpose:
<div style="clear: both"></div>

You might get something out of:

<http://netweaver.com.au/floatHouse/>

--
dorayme


Reply With Quote
  #3  
Old   
ZZ
 
Posts: n/a

Default Re: Two Column Layout Issue - 11-18-2008 , 12:27 AM



On Tue, 18 Nov 2008 08:16:46 +1100, dorayme
<doraymeRidThis (AT) optusnet (DOT) com.au> wrote:

Quote:
In article <okl3i49o169rjegdpt95rl2luoqvv50tht (AT) 4ax (DOT) com>,
ZZ <noway (AT) wpenewon (DOT) org> wrote:

I am having a bugger of a time figuring out why firefox won't
recognize my faux two-column layout. When the content column
("contcol") gets filled in with more content than the "menucol", both
"expand" properly in IE (it recognizes the background from "page" and
makes the column look expanded). In forefox (3) it doesn't do it -
the "menucol" ends with the content and the white box of the "contcol"
continues by itself.

IE (at least 6) behaves differently to FF in this matter. FF is strictly
correct. You need to either put overflow: hidden; or overflow: auto; on
your container or else style a clear into a last element in the
container. Even going so far as to create an element for this purpose:
div style="clear: both"></div

You might get something out of:

http://netweaver.com.au/floatHouse/
Thanks, I am looking at it with the newest IE7.

I did fail to mention that I have a footer div after the container
with a clear:both in it.

However, I did user oveflow: hidden, and it worked great to fix the
issue in FF.

Thanks for all of your help,

Tom




Reply With Quote
  #4  
Old   
dorayme
 
Posts: n/a

Default Re: Two Column Layout Issue - 11-18-2008 , 02:11 PM



In article <agk4i4db06m0suld4n9s2vn2knos3nnro9 (AT) 4ax (DOT) com>,
ZZ <noway (AT) wpenewon (DOT) org> wrote:

Quote:
On Tue, 18 Nov 2008 08:16:46 +1100, dorayme
doraymeRidThis (AT) optusnet (DOT) com.au> wrote:

In article <okl3i49o169rjegdpt95rl2luoqvv50tht (AT) 4ax (DOT) com>,
ZZ <noway (AT) wpenewon (DOT) org> wrote:

I am having a bugger of a time figuring out why firefox won't
recognize my faux two-column layout. When the content column
("contcol") gets filled in with more content than the "menucol", both
"expand" properly in IE (it recognizes the background from "page" and
makes the column look expanded). In forefox (3) it doesn't do it -
the "menucol" ends with the content and the white box of the "contcol"
continues by itself.

IE (at least 6) behaves differently to FF in this matter. FF is strictly
correct. You need to either put overflow: hidden; or overflow: auto; on
your container or else style a clear into a last element in the
container. Even going so far as to create an element for this purpose:
div style="clear: both"></div

You might get something out of:

http://netweaver.com.au/floatHouse/

Thanks, I am looking at it with the newest IE7.

It is not really advisable, see the preamble! But at least it is better
than reading it with IE 6. <g>

Quote:
I did fail to mention that I have a footer div after the container
with a clear:both in it.

That will not work. The clearing element, if it is to make the container
grow height, must be in the container itself and generally be the last
thing before the container says goodnight.

Quote:
However, I did user oveflow: hidden, and it worked great to fix the
issue in FF.

And many other modern browsers too.

--
dorayme


Reply With Quote
  #5  
Old   
ZZ
 
Posts: n/a

Default Re: Two Column Layout Issue - 11-18-2008 , 09:53 PM



On Wed, 19 Nov 2008 06:11:47 +1100, dorayme
<doraymeRidThis (AT) optusnet (DOT) com.au> wrote:

Quote:
In article <agk4i4db06m0suld4n9s2vn2knos3nnro9 (AT) 4ax (DOT) com>,
ZZ <noway (AT) wpenewon (DOT) org> wrote:

On Tue, 18 Nov 2008 08:16:46 +1100, dorayme
doraymeRidThis (AT) optusnet (DOT) com.au> wrote:

In article <okl3i49o169rjegdpt95rl2luoqvv50tht (AT) 4ax (DOT) com>,
ZZ <noway (AT) wpenewon (DOT) org> wrote:

I am having a bugger of a time figuring out why firefox won't
recognize my faux two-column layout. When the content column
("contcol") gets filled in with more content than the "menucol", both
"expand" properly in IE (it recognizes the background from "page" and
makes the column look expanded). In forefox (3) it doesn't do it -
the "menucol" ends with the content and the white box of the "contcol"
continues by itself.

IE (at least 6) behaves differently to FF in this matter. FF is strictly
correct. You need to either put overflow: hidden; or overflow: auto; on
your container or else style a clear into a last element in the
container. Even going so far as to create an element for this purpose:
div style="clear: both"></div

You might get something out of:

http://netweaver.com.au/floatHouse/

Thanks, I am looking at it with the newest IE7.


It is not really advisable, see the preamble! But at least it is better
than reading it with IE 6. <g

I did fail to mention that I have a footer div after the container
with a clear:both in it.


That will not work. The clearing element, if it is to make the container
grow height, must be in the container itself and generally be the last
thing before the container says goodnight.

However, I did user oveflow: hidden, and it worked great to fix the
issue in FF.

And many other modern browsers too.


And just to follow-up for anyone else who encounters this - having
your doctype at the top of your page is important for the browser.

Thanks again for your help,

Tom



Reply With Quote
  #6  
Old   
Bergamot
 
Posts: n/a

Default Re: Two Column Layout Issue - 11-18-2008 , 11:55 PM




ZZ wrote:
Quote:
And just to follow-up for anyone else who encounters this - having
your doctype at the top of your page is important for the browser.
It's not just the DOCTYPE, but which DOCTYPE. They are not all created equally.

--
Berg


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.