By djhomeless@jabber.org on
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
no need to remove
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:
It's the list-style:none that removes the bullets.