Shape 5

Joomla Templates => SphereDecs - May 2007 Bonus - Club => : interalign April 07, 2008, 03:32:30 PM



: Bullets and numbers
: interalign April 07, 2008, 03:32:30 PM
Hi there,
All I want to do is quickly adding bulleted / numbered lists, WITHOUT using HTML for each line as that is not user friendly and takes up too much time.

I have tried removing

ul  {
   list-style: none; }

from the template css, but this had no effect.

I also added

ul  {
   list-style: disc;
   padding-left:35px; }

To the template css again without any effect.

FYI my editor is XHTMLSuite.  I can see the bullet point lists if I use another template, but I spend some time (and money!) to get the right feel of the spheredocs template so your advice would be very much appreciated!.


: Re: Bullets and numbers
: mikek April 07, 2008, 04:44:43 PM
interalign,

If you just want to add bullets to your lists you can edit the template_css.css file and look for (down about 45 lines):

ul {
list-style-image:none;
list-style-position:outside;
list-style-type:none;
}

and just remove the following line:

list-style-type:none;


: Re: Bullets and numbers
: interalign April 07, 2008, 05:15:09 PM
Mike - many thanks - all sorted now!

Daniel