Removing Bullets with CSS

I want the bullet points gone. Makes my site look like a word doc. I figured that it would be done easily via css and it was pretty simple. You can go fr

learn drupal

om what you see at the top to the bottom with one fell swoop.

The Global.styles.css file determines the css for these (and many more) elements. the one for UL is at line 92 in my at core (subthemed to a new name) theme’s file.

i simply add list-style-type: none; and the bullets will disappear. Easy!

blockquote {}

cite {}

q {}

address {}
/* pjm – added to remove bullets from lists 042813*/
ul {
list-style-type: none;
}

ol {}

li {}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: