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
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 {}