[css-d] Problems with CSS layouts: bugs and anomalies

2010-07-23 Thread Gabriele Romanato
Hi! Just some reflections to avoid confusion with CSS debugging: http://onwebdev.blogspot.com/2010/07/problems-with-css-layouts-bugs-and.html HTH. bye ^^ Gabriele Romanato http://www.css-zibaldone.com http://www.css-zibaldone.com/test/ (English) http://www.css-zibaldone.com/articles/

Re: [css-d] Problems with CSS layouts: bugs and anomalies

2010-07-23 Thread David Laakso
Gabriele Romanato wrote: Just some reflections to avoid confusion with CSS debugging: http://onwebdev.blogspot.com/2010/07/problems-with-css-layouts-bugs-and.html HTH. bye ^^ Gabriele Romanato I think in the field of psychiatry it is sometimes known as a reality check. Then

[css-d] Centering a row of images, clearer

2010-07-23 Thread Steve Caramia
I think this is a simple one: Across the bottom of this page I want a row of logos on a background that extends 100%. I was able to do it with a table. Is there a way to do it in CSS? http://www.caramiadesign.com/kemly/ the markup: div id=logos table width=100% border=0 tr

Re: [css-d] Centering a row of images, clearer

2010-07-23 Thread David Laakso
Steve Caramia wrote: I think this is a simple one: http://www.caramiadesign.com/kemly/ While waiting for an answer to the question you posted... :-) Hold the ctrl key and keep banging the + key until the type stops enlarging. Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.4;

Re: [css-d] Centering a row of images, clearer

2010-07-23 Thread David Laakso
Steve Caramia wrote: I think this is a simple one: Oh, sure... simple for you and Lady Gaga. In the meantime we mere mortals still struggle with the meaning and origin of the one-eyed jack. Across the bottom of this page I want a row of logos on a background that extends 100%.

Re: [css-d] Centering a row of images, clearer

2010-07-23 Thread David Hucklesby
On 7/23/10 10:15 AM, Steve Caramia wrote: I think this is a simple one: Across the bottom of this page I want a row of logos on a background that extends 100%. I was able to do it with a table. Is there a way to do it in CSS? http://www.caramiadesign.com/kemly/ Yes. Here's an example of an

[css-d] place a div at the bottom of another div

2010-07-23 Thread Marcin Herda
Hi, I want to place a vertical bar across the page (at the bottom of the header div. * { margin:0; padding:0; } body { background: #ececec url('images/head_fill.png') repeat-x; font-family: Lucida Grande,Lucida,Verdana,sans-serif; font-size: 0.625em; line-height: 1.8em;

Re: [css-d] place a div at the bottom of another div

2010-07-23 Thread Tim Climis
On Friday, July 23, 2010 7:27:04 pm Marcin Herda wrote: I want to place a vertical bar across the page (at the bottom of the header div. Just 3 little changes: #header { position: relative; width: 100%; height: 154px; color: #ff; } #bar { position:

Re: [css-d] place a div at the bottom of another div

2010-07-23 Thread Martin
On 07/24/2010 12:37 AM, Tim Climis wrote: On Friday, July 23, 2010 7:27:04 pm Marcin Herda wrote: I want to place a vertical bar across the page (at the bottom of the header div. Just 3 little changes: #header { position: relative; width: 100%;