[WSG] List Item Separators

2004-12-05 Thread Paul Farrell
Hi Good People, Is their a cross browser solution to adding list separators, eg pipes ('|') to inline lists using only CSS, or does one have to add them in the markup outside the anchor tag within the list item ? Since joining the list about a month ago, I have learned so much (Thankyou all). It

RE: [WSG] List Item Separators

2004-12-05 Thread Paul Farrell
* Giving himself a slap on the forehead * Since posting this, an obvious use of left/right borders has popped into my head. Sorry for the unneeded post.. But if people have other methods I would love to hear them. PF I previously wrote: Hi Good People, Is their a cross browser solution to

Re: [WSG] List Item Separators

2004-12-05 Thread Jonathan T. Sage
Whoa. alright, well, I literally just did something like this. code I ended up using ul { list-style-type: none; } li { border-left: 1px solid black; padding-left: 7px; margin-left: 5px; display: inline; } not really a pipe, but it looks like it. hope this is of some use ~j On Mon, 6

Re: [WSG] List Item Separators

2004-12-05 Thread john
*grin* That's what it's all about, Paul -- you're thinking along different lines now (no pun intended). I've been doing the same thing, and I love it! :) I found the following on A List Apart that you may find helpful. Search the page for pipe and you'll see something that you can use.

Re: [WSG] List Item Separators

2004-12-05 Thread Patrick H. Lauke
Jonathan T. Sage wrote: Whoa. alright, well, I literally just did something like this. code I ended up using ul { list-style-type: none; } Unless I'm mistaken, once you set list items to display inline, it automatically disabled the bullet, so this should be unnecessary. -- Patrick H. Lauke

RE: [WSG] List Item Separators

2004-12-05 Thread Paul Farrell
Thankyou John, I should have known to go to ALA ! It really is a great site. *grin* That's what it's all about, Paul -- you're thinking along different lines now (no pun intended). I've been doing the same thing, and I love it! :) I found the following on A List Apart that you may

Re: [WSG] List Item Separators

2004-12-05 Thread Richard Czeiger
Farrell [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, December 06, 2004 7:36 AM Subject: RE: [WSG] List Item Separators Thankyou John, I should have known to go to ALA ! It really is a great site. *grin* That's what it's all about, Paul -- you're thinking along different lines now