Hello!
Try this to change the style of your lists:
<ul style="list-style-type: none">
<li>...</li>
</ul>
In what file would I change that code?
If this is your theme: http://www.fireflyoftheearth.com/
then add this code:
/* Style post-meta-lists*/
ul.post-meta {
list-style-type: none;
}
to your file style.css
I was wondering if I could get it in the CSS. I tried, various different ways, and it fails… miserably. 🙁
I added that to the style.css, and still it’s putting the bullet point. Which is why I was wondering what I needed to do in order to get that silly bullet point gone. If there was another file, possibly a php file somewhere that I could edit.
Specifically this entry here, where I added the custom field for current song. I guess I have some investigating to do… some more.
Thanks for the help! If there’s any other helpage, I’d gladly try any other suggestions. 🙂
If you don’t want them at all anywhere, try:
ul li {list-style-type: none;}
if that doesn’t work try:
ul li {list-style-type: none !important;}
Don’t have time to actually look at the actual css.
Thank you! That worked to get rid of the bullet point. 😀