Sorry for the silly question here.

I'm not a big fan of ordered lists (bullet points) being used in the blocks. I'd like to remove them. The problem is, I honestly can't figure out where the

< u l > < l i >
< / l i > < / u l >

gets set. Does anyone know? I've searched through almost all the mocules and my theme.

Sorry for the newbie question!

Geoffrey

Comments

desbeers’s picture

The ul's and li's are in function theme_item_list() in theme.inc., but there is no need to change it. You can do that with CSS, because the lists do have a class 'item-list'. See drupal.css in misc/ for the default style. You can override it in your theme.

Example:

.item-list ul  { margin:0.5em 0 0.5em 0; padding:0.2em 0 0 0; border-bottom:1px groove #fff;}
.item-list ul li { list-style: none; margin:0.25em 0 0 0; padding:0px;}
.item-list a { text-decoration: none; font-weight:normal; }

It's the list-style:none that removes the bullets.