Re: [css-d] Clearing a float

2010-10-05 Thread Todd Richards
Thanks Thierry - I'll give that a shot. Do I have to remove the float from the #leftSidebar nav then? Todd -Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Thierry Koblentz Sent: Monday, October 04, 2010 11:08 PM To:

Re: [css-d] Clearing a float

2010-10-05 Thread Thierry Koblentz
Thanks Thierry - I'll give that a shot. Do I have to remove the float from the #leftSidebar nav then? No, you'd leave the float in. The idea is to create two block formatting contexts. The float declaration does this for the left column, the rule I sent you does this for the right column.

Re: [css-d] [+] Re: Clearing a float

2010-10-05 Thread Thierry Koblentz
Hi Philippe, I don't think inherit is a proper value for clear. it is: http://www.w3.org/TR/CSS21/visuren.html#flow-control I had checked CSS pocket reference (Eric Meyer/O'Reilly) and it says in there that inherit is not. I have a more recent version of this great little book, but for

Re: [css-d] [+] Re: Clearing a float

2010-10-05 Thread Climis, Tim
I don't think inherit is a proper value for clear. it is: http://www.w3.org/TR/CSS21/visuren.html#flow-control It's interesting though. This new value came in now that authors use clear even less than before as they now contain floats more than they clear them. Does it do anything

Re: [css-d] [+] Re: Clearing a float

2010-10-05 Thread Thierry Koblentz
I don't think inherit is a proper value for clear. it is: http://www.w3.org/TR/CSS21/visuren.html#flow-control It's interesting though. This new value came in now that authors use clear even less than before as they now contain floats more than they clear them. Does it do

Re: [css-d] CSS3 multiple background images

2010-10-05 Thread Alan Gresley
Gabriele Romanato wrote: Hi, I think this post will be useful for beginners: http://onwebdev.blogspot.com/2010/10/css3-multiple-background-images.html HTH ^^/ bye Gabriele Romanato Hello Gabriele, Why not just use border radius for rounded corners. Leaves the multiple backgrounds for

[css-d] CSS3 transformations: rotate

2010-10-05 Thread Gabriele Romanato
Hi. http://onwebdev.blogspot.com/2010/10/css3-transformations-rotate.html Opera seems not to support it. In IE9's feature list there's no sign of it. :-( HTH bye Gabriele Romanato http://www.css-zibaldone.com http://www.css-zibaldone.com/test/ (English)

Re: [css-d] CSS3 multiple background images

2010-10-05 Thread Gabriele Romanato
Good advice thanks! On Oct 5, 2010, at 5:52 PM, Alan Gresley wrote: Gabriele Romanato wrote: Hi, I think this post will be useful for beginners: http://onwebdev.blogspot.com/2010/10/css3-multiple-background-images.html HTH ^^/ bye Gabriele Romanato Hello Gabriele, Why not just use border

[css-d] Nested List type

2010-10-05 Thread Brian M. Curran
Hello, Re: www.draftingservices.com I'd like to add a new section to my website, that being AutoCAD Tutorials. So picture this, my secondary nav bar would have the AutoCAD Tutorials line added to it. Then, the AutoCAD Tutorial line would have a nested list of all the tutorials that I plan to

Re: [css-d] Nested List type

2010-10-05 Thread David Laakso
On 10/5/10 1:26 PM, Brian M. Curran wrote: Hello, Re: www.draftingservices.com I'd like to add a new section to my website, that being AutoCAD Tutorials. So picture this, my secondary nav bar would have the AutoCAD Tutorials line added to it. Then, the AutoCAD Tutorial line would have a

Re: [css-d] Nested List type

2010-10-05 Thread Brian M. Curran
On 10/5/10 1:26 PM, Brian M. Curran wrote: When clicking on the AutoCAD Tutorial line in my secondary nav bar, I'd like it to be a landing page that would consist of an introduction paragraph. Also when it is clicked, I'd like all the nested list lines to appear (i.e. Tutorial 1, Tutorial

Re: [css-d] [+] Re: Clearing a float

2010-10-05 Thread Eric A. Meyer
At 7:54 AM -0700 10/5/10, Thierry Koblentz wrote: I don't think inherit is a proper value for clear. it is: http://www.w3.org/TR/CSS21/visuren.html#flow-control I had checked CSS pocket reference (Eric Meyer/O'Reilly) and it says in there that inherit is not. I have a more recent version

Re: [css-d] [+] Re: Clearing a float

2010-10-05 Thread Philippe Wittenbergh
On Oct 6, 2010, at 6:11 AM, Eric A. Meyer wrote: I don't think inherit is a proper value for clear. it is: http://www.w3.org/TR/CSS21/visuren.html#flow-control I had checked CSS pocket reference (Eric Meyer/O'Reilly) and it says in there that inherit is not. I have a more recent

Re: [css-d] [+] Re: Clearing a float

2010-10-05 Thread Philippe Wittenbergh
On Oct 6, 2010, at 8:00 AM, Philippe Wittenbergh wrote: 'inherit' was already mentioned in the CSS 2.0 text: http://www.w3.org/TR/CSS2/visuren.html#propdef-clear oops, sorry. wrong url there. this is one is correct http://www.w3.org/TR/2008/REC-CSS2-20080411/visuren.html#flow-control

[css-d] Two nested list problems

2010-10-05 Thread Brian M. Curran
Hello, Re: http://www.draftingservices.com/autocad_tutorials.html I'm trying to accomplish two things, and have been failing. 1. Stop my nested list from inheriting the text decoration and cursor styling. (I got this to partially work, but removed the code because it didn't work

Re: [css-d] Two nested list problems

2010-10-05 Thread Thierry Koblentz
Re: http://www.draftingservices.com/autocad_tutorials.html I'm trying to accomplish two things, and have been failing. 1. Stop my nested list from inheriting the text decoration and cursor styling. (I got this to partially work, but removed the code because it didn't work completely.)

Re: [css-d] Two nested list problems

2010-10-05 Thread Brian M. Curran
Re: http://www.draftingservices.com/autocad_tutorials.html I'm trying to accomplish two things, and have been failing. 1. Stop my nested list from inheriting the text decoration and cursor styling. (I got this to partially work, but removed the code because it didn't work

Re: [css-d] Two nested list problems

2010-10-05 Thread Thierry Koblentz
2. Get my nested list indented. Wrote: Thierry Try this: #navlist #subnavlist li a { padding-left:20px; text-decoration:none; cursor:default; width:auto; } Thanks Theirry. I'm one step closer though, and learning, but not there yet. I'm trying to get

Re: [css-d] Two nested list problems

2010-10-05 Thread Brian M. Curran
Thierry wrote: Nope, because you said earlier My nested list is under AutoCAD Tutorials, hence that's what the rule I sent targets. Because that nested list contains a single item AutoCAD Tutorial Basic Training Video 1 Sorry, I have no clue what you are trying to achieve. I have AutoCAD