[css-d] List style colour

2006-06-16 Thread Brendan Grossman
Just a quick question... Is it possible to colour a list's bullets and not the text? I can get around it by using span or something within each li, but I was hoping I wouldn't need to... Cheers Brendan __ css-discuss [EMAIL

Re: [css-d] Relative positioning and widths

2006-06-16 Thread Brendan Grossman
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ed Seehouse Sent: Friday, 16 June 2006 3:08 AM To: Brendan Grossman Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] Relative positioning and widths On 6/14/06, Brendan Grossman [EMAIL

[css-d] Relative positioning and widths

2006-06-14 Thread Brendan Grossman
Hi everyone Is it possible to have floating divs side-by-side without the width specified or with just one set explicitly? For example I have two columns... Left hand side I want to set explicity, ie. 15em Right hand side, I want it to fill up the remaining area of the page. However when

[css-d] Floats break containing div

2005-10-12 Thread Brendan Grossman
Hi all I have the following code, and the floats are displaying correctly (as in they're side-by-side), but the wrapper doesn't extend down... style #wrapper { border-left: 6px solid #FFCC33; border-right: 6px solid #FFCC33; background-color: #fff; } #wrapper p {

Re: [css-d] Float breaks padding and border in Firefox

2005-06-12 Thread Brendan Grossman
On Sun, 12 Jun 2005 23:58:56 -0400, Kelly Miller [EMAIL PROTECTED] said: According to CSS2, if a container contains only floats, it should collapse to have 0 height. Try putting a third div after the floats, and giving it the rule clear: both. Sweet, that fixed it. Thanks a lot!