Zen Cart Logo
Forums / Templates, Stylesheets, Page Layout / UL List Style Properties?

UL List Style Properties?

Views: 1,007

Results 1 to 10 of 10
2 Jun 2011, 9:36 PM
#1
wizer avatar

wizer

Zen Follower

Join Date:
Jul 2010
Location:
London, UK
Posts:
135
Plugin Contributions:
0

UL List Style Properties?

Hi

For some reason the unordered lists in my template are not showing the bullet points.

Here is a product page:

http://intelligentworkshoptools.co.uk/index.php?main_page=product_info&cPath=36_37&products_id=90

I can't seem to pin down the exact properties to edit. Can anyone help me work out why the bullets aren't showing?

TIA

2 Jun 2011, 9:42 PM
#2
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: UL List Style Properties?

wizer:

Hi

For some reason the unordered lists in my template are not showing the bullet points.

Here is a product page:

http://intelligentworkshoptools.co.uk/index.php?main_page=product_info&cPath=36_37&products_id=90

I can't seem to pin down the exact properties to edit. Can anyone help me work out why the bullets aren't showing?

TIA

stylesheet_tm.css

ul { list-style:none;}

2 Jun 2011, 10:48 PM
#3
wizer avatar

wizer

Zen Follower

Join Date:
Jul 2010
Location:
London, UK
Posts:
135
Plugin Contributions:
0

Re: UL List Style Properties?

Thanks

but that already exists in that file?

2 Jun 2011, 11:25 PM
#4
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: UL List Style Properties?

If referring to ones in your product description - - then these are not styled by the stylesheet currently

You would have to wrap them in a named div to address them

2 Jun 2011, 11:26 PM
#5
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: UL List Style Properties?

wizer:

Thanks

but that already exists in that file?

And it is overriding any of your other <ul> declarations.

That's why you don't get any bullets

2 Jun 2011, 11:29 PM
#6
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: UL List Style Properties?

clydejones:

And it is overriding any of your other <ul> declarations.
Good catch Clyde, I just despise TM

2 Jun 2011, 11:32 PM
#7
wizer avatar

wizer

Zen Follower

Join Date:
Jul 2010
Location:
London, UK
Posts:
135
Plugin Contributions:
0

Re: UL List Style Properties?

Thanks, can I have this in idiot terms? Does this mean I remove ul { list-style:none;}?

2 Jun 2011, 11:33 PM
#8
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Location:
Arizona
Posts:
31,500
Plugin Contributions:
4

Re: UL List Style Properties?

Thanks, can I have this in idiot terms? Does this mean I remove ul { list-style:none;}?
Yes BUT look for other anomolies that it may cause by not having it

2 Jun 2011, 11:39 PM
#9
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: UL List Style Properties?

wizer:

Thanks, can I have this in idiot terms? Does this mean I remove ul { list-style:none;}?

You can do that, but it will effect every <ul> on your website.

If you just want bullets for your product description, you can style it by adding the following to your stylesheet.css

#productDescription ul {
list-style:disc;
}

2 Jun 2011, 11:53 PM
#10
wizer avatar

wizer

Zen Follower

Join Date:
Jul 2010
Location:
London, UK
Posts:
135
Plugin Contributions:
0

Re: UL List Style Properties?

That worked thanks