Re: [css-d] List items displaying inline; refusing to behave

2011-04-11 Thread Philippe Wittenbergh
On Apr 12, 2011, at 10:03 AM, RePost wrote: > My sidebar includes a tabbed menu. First tab is Popular Posts. You'll see the > list items appear to be running together in an inline fashion. > > I'm throwing "display:block" everywhere, but I can't get the list to behave. > > I would appreciate a

[css-d] List items displaying inline; refusing to behave

2011-04-11 Thread RePost
Here we go again. My sidebar includes a tabbed menu. First tab is Popular Posts. You'll see the list items appear to be running together in an inline fashion. I'm throwing "display:block" everywhere, but I can't get the list to behave. I would appreciate any suggestions! http://bit.ly/eYGXbo

Re: [css-d] List items overlap floated left div

2008-10-05 Thread Gene Falck
Hi Ian and Philippe Ian wrote about the numbers in an ordered list being under a floated-left item Philippe wrote: > That is always a complex situation. Depeending on what the overal look > of the page needs to be you can: > > 1. set a wide enough left margin on the ol, wider than the width o

Re: [css-d] List items overlap floated left div

2008-10-05 Thread Ian M. Evans
Thanks. I'll give those tips a try. __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ List policies -- http://css-discuss.org/policies.html Supported

Re: [css-d] List items overlap floated left div

2008-10-05 Thread Serge Krul
One more thing you can do is to organize your page elements a little: Quid pro quo Message from sponsor Introductory paragraph. Yada yada yada List Item 1 List Item 2 List Item 3 List Item 4 and then float left both the sponsors div and the content div. this way you'll have more control

Re: [css-d] List items overlap floated left div

2008-10-05 Thread Philippe Wittenbergh
On Oct 5, 2008, at 10:08 AM, Ian M. Evans wrote: > I have a problem where the first few list items in an ordered list > have > their numbers overlapping a left floated div, i.e. the list item > numbers > appear inside the border of the left-floated box. > > Here's the html: > > Quid pro quo >

Re: [css-d] List items overlap floated left div

2008-10-05 Thread Serge Krul
Hi Ian, It's a little difficult to tell without seeing a (non) working example, but you probably need to specify left margin for the OL instead of (or in addition to) the LI: ol { margin-left:30px; } Hope this helps, Serge Krul > ___

[css-d] List items overlap floated left div

2008-10-04 Thread Ian M. Evans
I have a problem where the first few list items in an ordered list have their numbers overlapping a left floated div, i.e. the list item numbers appear inside the border of the left-floated box. Here's the html: Quid pro quo Message from sponsor Introductory paragraph. Yada yada yada List I

Re: [css-d] List items in columns

2008-09-10 Thread Jack Timmons
On Tue, Sep 9, 2008 at 11:45 PM, Zach Shepherd <[EMAIL PROTECTED]> wrote: > I'm not sure if it's quite what you want, but you could use something like: > > > LABEL:VALUE > ... > > > with css specifying a width for label in ems (and other styling, of > course). > > Zach > > On Wed, Sep 10, 2008 a

Re: [css-d] List items in columns

2008-09-09 Thread Rees, Mark
: css-d@lists.css-discuss.org Subject: Re: [css-d] List items in columns I was under the impression that you couldn't set a width on an inline element. - Original Message - From: "Damien" <[EMAIL PROTECTED]> To: "Jim" <[EMAIL PROTECTED]> Sent: Tuesda

Re: [css-d] List items in columns

2008-09-09 Thread Jim
I was under the impression that you couldn't set a width on an inline element. - Original Message - From: "Damien" <[EMAIL PROTECTED]> To: "Jim" <[EMAIL PROTECTED]> Sent: Tuesday, September 09, 2008 9:23 PM Subject: Re: [css-d] List items in columns

Re: [css-d] List items in columns

2008-09-09 Thread Jim
Tuesday, September 09, 2008 9:35 PM Subject: Re: [css-d] List items in columns With such a large amount of data, I would suggest using a template and perhaps a server-side database. MySQL is often included in a web hosting package and is fairly quick to learn. Regards, Alan. www.theatre

Re: [css-d] List items in columns

2008-09-09 Thread Zach Shepherd
I'm not sure if it's quite what you want, but you could use something like: LABEL:VALUE ... with css specifying a width for label in ems (and other styling, of course). Zach On Wed, Sep 10, 2008 at 00:35, Gunlaug Sørtun <[EMAIL PROTECTED]> wrote: > Jim wrote: > > Is there any way to lay out

Re: [css-d] List items in columns

2008-09-09 Thread Gunlaug Sørtun
Jim wrote: > Is there any way to lay out list items as follows, without using tables > (won't look right unless you view email as plain text): > > > * CPU: 2 x Xeon 5130 > * RAM: 8 GB > * STORAGE: 330 GB > > The thing that drives me nuts with using tables in this example is tha

[css-d] List items in columns

2008-09-09 Thread Jim
Is there any way to lay out list items as follows, without using tables (won't look right unless you view email as plain text): * CPU: 2 x Xeon 5130 * RAM: 8 GB * STORAGE: 330 GB The thing that drives me nuts with using tables in this example is that it requires such a lot of

[css-d] list items appearing in the back, dropping off

2007-07-12 Thread Mary Jo Sinner Savageau
How do I make sure my list items in a vertical drop-down menu are on top? I tried a z-index set to the second li, but it didn't work. Also, they seem to drop off into space on the hover ... trying to go down the list, it drops off on the longer ones. Do I need to specifiy a height? Here's my te

Re: [css-d] List Items

2007-03-13 Thread Jukka K. Korpela
On Tue, 13 Mar 2007, Kenny Graham wrote: >> How can I modify the amount of space between the bullet in an >> unordered list and the actual text? > > Of course, the most positioning control comes from replacing the > bullet with a background image. There are various ways to create bulleted lists i

Re: [css-d] List Items

2007-03-13 Thread Kenny Graham
> How can I modify the amount of space between the bullet in an > unordered list and the actual text? Of course, the most positioning control comes from replacing the bullet with a background image. But then the bullet doesn't resize with the text, which may be an accessibility issue.

Re: [css-d] List Items

2007-03-13 Thread francky
Gunlaug Sørtun schreef: > Ledvina, Barbara [ED] wrote: > >> How can I modify the amount of space between the bullet in an >> unordered list and the actual text? >> > > Set suitable paddings on the ul and the li... > > > regards > Ge

Re: [css-d] List Items

2007-03-13 Thread Gunlaug Sørtun
Ledvina, Barbara [ED] wrote: > How can I modify the amount of space between the bullet in an > unordered list and the actual text? Set suitable paddings on the ul and the li... regards Georg -- http://www.gunlaug.no ___

Re: [css-d] List Items

2007-03-13 Thread Daniel Beardsmore
Ledvina, Barbara [ED] wrote: > How can I modify the amount of space between the bullet in an unordered list > and the actual text? Which way? Officially, it's impossible. All such joy was ripped out of CSS2 and stamped on by the W3C. Since list items are block-level elements, you could try pla

[css-d] List Items

2007-03-13 Thread Ledvina, Barbara [ED]
How can I modify the amount of space between the bullet in an unordered list and the actual text? Barb [EMAIL PROTECTED] 515-242-5036 __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 info

Re: [css-d] List items and their spacing

2007-01-17 Thread Zoe M. Gillenwater
Eoin Magure wrote: > Hi, > > I've never had this issue with spacing before so I'm confused. > Basically I have a list to which I've applied a class that sets the > list items image icon (instead of the stand 'dot' icon) and in that class > I've also set margin = 0 and padding-left = 30 with a

[css-d] List items and their spacing

2007-01-17 Thread Eoin Magure
Hi, I've never had this issue with spacing before so I'm confused. Basically I have a list to which I've applied a class that sets the list items image icon (instead of the stand 'dot' icon) and in that class I've also set margin = 0 and padding-left = 30 with all other padding = 0. Then in

Re: [css-d] List-items moving down because of display: block on link

2006-11-16 Thread dimpie
Ingo wrote: > > apply > vertical-align:bottom > to the li's > > http://archivist.incutio.com/viewlist/css-discuss/68792 > > > Ingo > > -- > http://www.satzansatz.de/css.html > Yes, applying the vertical-align: bottom worked. Great. Thank you very much Ingo. Dimpie

Re: [css-d] List-items moving down because of display: block on link

2006-11-16 Thread Ingo Chao
dimpie wrote: > ...In Internet Explorer 6 the list-items in ul#level1 are moving down as soon > as I hover over one of the list-items. > I think this has to do with the 'display: block' I've put on the tag, > because as soon as I remove it, the jumping of the list-items stops. > > > ... You c

[css-d] List-items moving down because of display: block on link

2006-11-16 Thread dimpie
Hi everybody, I'm getting quite desparate about this problem. I've been trying for hours and hours to solve the problem, but nothing works. In Internet Explorer 6 the list-items in ul#level1 are moving down as soon as I hover over one of the list-items. I think this has to do with the 'display: