1 reply [Last post]
bobdole123434252
bobdole123434252's picture
User offline. Last seen 1 year 39 weeks ago. Offline
newbie
Timezone: GMT-5
Joined: 2010-07-12
Posts: 5
Points: 7

Hey guys, my programmer used the code:

li {
	list-style-type: none;
}

Later on in the sales pages I wanted to have a list that displays the disk style type.

Is it possible to over ride that code above?

I tried using a class:

.liststyle1 {
	list-style-type: disk;
	margin-left: 25px;
}

But I don't think that works.. or atleast it wasn't showing up in the browser. Maybe there's something else I'm over looking but I think it's the li code above that's blocking it.

Is there a way to display the list style disk's in just one certain area?

leventis
leventis's picture
User offline. Last seen 1 year 34 weeks ago. Offline
rank Regular
Regular
Timezone: GMT+1
Joined: 2010-06-17
Posts: 13
Points: 19

Try

Try using:
list-style:disc;
or
list-style:disc !important;