Re: [css-d] 5 column CSS box

2006-05-16 Thread Daniel Pape
Brian. A DIV is considered a block element and so typically its content flows to fill the size of the DIVs specified width rather than the other way around. A DIV will expand its height to fit the text inserted. What you could do is set the widths of the DIVS to percentages this would

Re: [css-d] Show/Hide UL not working in IE

2006-05-09 Thread Daniel Pape
a standard application menu bar which in some ways is preferable. For reference, if anyone has encountered similar behavior and found a solution I would still be interested in knowing. -- Daniel On 5/7/06 8:27 PM, francky [EMAIL PROTECTED] wrote: Daniel Pape wrote: I suppose this is technically

[css-d] Show/Hide UL not working in IE

2006-05-07 Thread Daniel Pape
to be standards compliant and XHTML valid after all these years ;-) Thanks! -- Daniel Pape __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com

Re: [css-d] IE drops center and right column content below left

2006-05-02 Thread Daniel Pape
On 05 2, 06, at 10:16 PM, bj wrote: One more question, where is how to or tutorial on getting your mini site logo to show up in the browser URL window? Are you talking about the favicon? If so, here's the url for learning how to use them along with a cool tool for making them.

Re: [css-d] 5 column CSS box

2006-05-02 Thread Daniel Pape
The best way to do this would be to float each div inside your container. This will allow them to line up horizontally. The CSS may look like this. #Box1 { float: left; width: xxx; } #Box2 { float: left; width: xxx; } #Box3 { float: left; width: xxx; } #Box4 { float: