Re: [css-d] Site Check, please

2007-09-02 Thread David Laakso
Lorraine Barte Nepomuceno wrote: Hi everyone, I'm having problems with a design of mine. On some browsers (although not any of ours here at the office, but that may be because we're all widescreen), the right sidebars are pushed down below the main content area: Sample is at:

Re: [css-d] Site Check, please

2007-09-02 Thread trevor bayliss
David Laakso [EMAIL PROTECTED] wrote: Lorraine Barte Nepomuceno wrote: Hi everyone, I'm having problems with a design of mine. On some browsers (although not any of ours here at the office, but that may be because we're all widescreen), the right sidebars are pushed down below the main

[css-d] inline element that could be sized ?

2007-09-02 Thread Fabien Meghazi
Hi all, Is there an inline element which can contains nothing (no child inside) and that can be sized with width and height yet keeping the possibility to use a background ? I would like to make a staring system that can be inline so it would look like this : Please rate this : * * * * * *

Re: [css-d] inline element that could be sized ?

2007-09-02 Thread Gunlaug Sørtun
Fabien Meghazi wrote: I would like to make a staring system that can be inline so it would look like this : Please rate this : * * * * * * [button] I'm trying to work with ul and li both display: inline but once the li are inline, I can't set a width for them. An unordered list (ul)

Re: [css-d] inline element that could be sized ?

2007-09-02 Thread Richard Grevers
On 9/3/07, Fabien Meghazi [EMAIL PROTECTED] wrote: Hi all, Is there an inline element which can contains nothing (no child inside) and that can be sized with width and height yet keeping the possibility to use a background ? I would like to make a staring system that can be inline so it

[css-d] Are table-based layouts still needed

2007-09-02 Thread Marcelo de Moraes Serpa
Or, do table-based layouts still have a place on the web? There will definitly be a lot of table-based layouts for many times to come. Not everyone has the knowledge nor is obligated to use CSS-based layouts. But from a web professional standpoint, do you think table-based layouts still need to

Re: [css-d] Are table-based layouts still needed

2007-09-02 Thread Ian Young
Subject: [css-d] Are table-based layouts still needed Or, do table-based layouts still have a place on the web? There will definitly be a lot of table-based layouts for many times to come. Not everyone has the knowledge nor is obligated to use CSS-based layouts. But from a web

Re: [css-d] Are table-based layouts still needed

2007-09-02 Thread [EMAIL PROTECTED]
do you think table-based layouts still need to be used for some particular layouts? Not really. In other words, can pure CSS layouts do everything a table-based layout can do? Yes, save a single exception :) I haven't done a table-based layout in a looong time. Haven't needed to,

Re: [css-d] Site Check, please

2007-09-02 Thread trevor bayliss
CSS guru David Laakso very kindly gave me some code: br.both { clear : both; } br.right { clear : right; } br.left { clear : left; } .clear { height : 0; clear : both; } Can someone please explain to me what this does and why it is needed with strict xhtml. Thank-you in advance.

[css-d] Sorry the subject is different-my last post was not site check please

2007-09-02 Thread trevor bayliss
CSS guru David Laakso very kindly gave me some code: br.both { clear : both; } br.right { clear : right; } br.left { clear : left; } .clear { height : 0; clear : both; } Can someone please explain to me what this does and why it is needed with strict xhtml. Thank-you in advance.

[css-d] line-height: 2;

2007-09-02 Thread trevor bayliss
What is line-height: 2; what value is interpreted by the browser? An em value or px? Sorry about this newbie question, thanks for input #footer p { font-size : 75%; line-height: 2; margin-top : 0; margin-bottom : 0; } - Be a better Heartthrob. Get

Re: [css-d] line-height: 2;

2007-09-02 Thread Felix Miata
On 2007/09/02 16:46 (GMT-0700) trevor bayliss apparently typed: What is line-height: 2; what value is interpreted by the browser? An em value or px? Sorry about this newbie question, thanks for input #footer p { font-size : 75%; line-height: 2; margin-top : 0; margin-bottom : 0; } On

Re: [css-d] line-height: 2;

2007-09-02 Thread Felix Miata
On 2007/09/02 20:08 (GMT-0400) Felix Miata apparently typed: On 2007/09/02 16:46 (GMT-0700) trevor bayliss apparently typed: What is line-height: 2; what value is interpreted by the browser? An em value or px? Sorry about this newbie question, thanks for input #footer p { font-size :

[css-d] Center liquid thumbnail gallery div

2007-09-02 Thread Scott Demontluzin
Hi List, I'm trying to center the #gallery div within the parent #main div and keep them both liquid. I tried #gallery {margin: 0 auto;} but that did not work. Is there a way to do this? I've given #main a red background. Also, I'm using altFooterStick which is causing problems in IE 6. The

Re: [css-d] line-height: 2;

2007-09-02 Thread Rafael
Check this, it may help you... http://meyerweb.com/eric/thoughts/2006/02/08/unitless-line-heights/ trevor bayliss wrote: What is line-height: 2; what value is interpreted by the browser? An em value or px? Sorry about this newbie question, thanks for input #footer p { font-size :

Re: [css-d] Center liquid thumbnail gallery div

2007-09-02 Thread Gunlaug Sørtun
Scott Demontluzin wrote: http://www.scottdemontluzin.com/test/sdpaintings_1.htm I'm trying to center the #gallery div within the parent #main div and keep them both liquid. First: floats can not center, and auto-margins won't work on liquid elements. Inline-elements can be centered though.