Re: [css-d] Help with css layout from newbie

2006-02-10 Thread Paul Kahl
Keep in mind also that directly indicating measurement types is always a plus, and you can shortcut colors when you are dealing with paired sets. Thus #navigation { >background: #336699; >float: left; >margin: 0 0 0 0 !important; /* original code, this will show in > mozi

Re: [css-d] problem with table rows

2006-01-30 Thread Paul Kahl
orget that cellspacing is not yet an attribute of CSS. As a rule, I always put cellspacing="0" and cellpadding="0" in my table declarations, and handle actual padding in cells from inside the CSS. Thus: Paul Kahl Web Developer "An ob

Re: [css-d] z-index with flash in firefox

2006-01-27 Thread Paul Kahl
-you-place-layers-over-flash-files-or-drop-dow ns/ I strongly suggest viewing the examples page there (http://www.aplus.co.yu/wch/examples/) to see the "finished" version. It's a good method to employ, and I hope it helps. Paul Kahl Web Developer "An ob

Re: [css-d]

2006-01-24 Thread Paul Kahl
.child {width: 80%;} content This will set the initial div at full window width, and the child will be centered and take up 80% of the page. Or even a pixel/em dimmension instead of the 80%. It's a bit of a hack, but works beautifully. P

Re: [css-d] Calling a class within a class

2006-01-23 Thread Paul Kahl
d see if it's a workable solution. Paul Kahl Web Developer "An object at rest cannot be stopped!" -Original Message- From: Matthew Levine [mailto:[EMAIL PROTECTED] Sent: Monday, January 23, 2006 2:50 PM To: Paul Kahl Cc: css-d@lists.css-discuss.org Subject: Re: [css-d]

[css-d] Calling a class within a class

2006-01-23 Thread Paul Kahl
? I already know that I can stack classes inside a tag in this fashion: [div class="clsX clsY clsZ"][/div]. That's not really what I'm looking for. I'm looking for something that is handled purely inside the stylesheet. I'm hoping there's a greater