Re: [css-d] help targeting a nested list

2011-11-16 Thread David Laakso
On 11/16/11 3:35 PM, Angela French wrote: So I wrote this style, and it works for the nesting level indicated, but I need a style to work at any nesting level for li.ListNumber. Isn't that possible? Set paragraphs. Best, ~d Desktop. Laptop. Tablet. Mobile! http://chelseacreekstudio.com/ _

Re: [css-d] Way to start an ol at a specific number/letter?

2011-11-16 Thread Jukka K. Korpela
2011-11-17 1:38, Angela French wrote: I got it to work with list-style-type decimal, but not alpha. Any way to make it start on a particular letter? The idea at http://timmychristensen.com/css-ordered-list-numbering-examples.html is that you don't use list-style-type (but set it to none and g

Re: [css-d] Way to start an ol at a specific number/letter?

2011-11-16 Thread Jukka K. Korpela
2011-11-17 1:47, Angela French wrote: Counter-reset isn't supported in IE 7. Naturally. :-( The worst thing about this is that it makes approaches like http://timmychristensen.com/css-ordered-list-numbering-examples.html fail badly: in IE 7, the list is not numbered at all, and it lacks

Re: [css-d] nav not floating right

2011-11-16 Thread David Laakso
On 11/15/11 8:29 PM, mem wrote: thanks. I notice you didn't choose float the nav, but instead text-align right the ul; I've tried to reproduce that with no success: http://help.nuvemk.com/floatedFluidLayoutHtml5/index_2.php http://help.nuvemk.com/floatedFluidLayoutHtml5/style_2.css I'm to tir

Re: [css-d] Way to start an ol at a specific number/letter?

2011-11-16 Thread Angela French
Counter-reset isn't supported in IE 7. Naturally. :-( >-Original Message- >From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css- >discuss.org] On Behalf Of Chris Morton >Sent: Wednesday, November 16, 2011 3:29 PM >To: css-d@lists.css-discuss.org >Subject: Re: [css-d]

Re: [css-d] Way to start an ol at a specific number/letter?

2011-11-16 Thread Angela French
Thanks! I got it to work with list-style-type decimal, but not alpha. Any way to make it start on a particular letter? >-Original Message- >From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css- >discuss.org] On Behalf Of Chris Morton >Sent: Wednesday, November 16, 2

Re: [css-d] Way to start an ol at a specific number/letter?

2011-11-16 Thread Chris Morton
http://timmychristensen.com/css-ordered-list-numbering-examples.html On Wed, Nov 16, 2011 at 3:23 PM, Angela French wrote: > Oh, the days of html 4.0 transitional when we could set the start number > for a list right in the html! Is there a way to do this in CSS? I would > need to write it inl

[css-d] Way to start an ol at a specific number/letter?

2011-11-16 Thread Angela French
Oh, the days of html 4.0 transitional when we could set the start number for a list right in the html! Is there a way to do this in CSS? I would need to write it inline on the Thanks! Angela French Internet Specialist State Board for Community and Technical Colleges 360-704-4316 afre...@sbc

Re: [css-d] center vertically - a quest

2011-11-16 Thread mem
On Nov 16, 2011, at 22:47 , mem wrote: > Hello all, again. > > This is hard. (At least it seems to be); > > I should have a container of a min-width and min-height defined so that, if > the image inside that container is very tiny, the container should maintain > is position, by having the con

[css-d] center vertically - a quest

2011-11-16 Thread mem
Hello all, again. This is hard. (At least it seems to be); I should have a container of a min-width and min-height defined so that, if the image inside that container is very tiny, the container should maintain is position, by having the contained image centered, both vertically and horizontal

Re: [css-d] help targeting a nested list

2011-11-16 Thread Angela French
So I wrote this style, and it works for the nesting level indicated, but I need a style to work at any nesting level for li.ListNumber. Isn't that possible? And no matter what I still can't get IE8/IE7 to render the decimals. div#Content_box ul ol li.ListNumber { font-size: 1.25em;

Re: [css-d] help targeting a nested list

2011-11-16 Thread Tim Climis
> Is there some way to target the li that doesn't care what level of nesting it is in? Yes, and your example is it. "li" selects any list item. "li li" selects second, third, etc level list items. The problem is that there's a rule div#Content_box ol that sets the font-size to .8em on the whol

[css-d] help targeting a nested list

2011-11-16 Thread Angela French
Good Morning. I need some help styling s in nested lists. This is my test page: http://168.156.9.142/college/_f-tuitionwaivers_childofdisableddeceasedpowNEW.aspx . Half way down the page, under Changes in 2008, my nested list is supposed to be numbered and the font should be the same as elsewh

Re: [css-d] nav not floating right

2011-11-16 Thread Paceaux
try using modrnizer.js for your html5 block elements. Or, a simpler solution is to use the Meyer 2.0 CSS reset. In it, Eric Meyer declares all the HTML5 block elements as display:block. Frank M Taylor http://frankmtaylor.com @paceaux On Nov