• Resolved fireflyoftheearth

    (@fireflyoftheearth)


    I was looking around and figured out how to add custom fields (internal yay!), but I can’t seem to figure out how to get rid of the bullet points. I looked around to see if there was a way to do it, but nothing seems to be working. Any suggestions for this noob?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hello!

    Try this to change the style of your lists:

    <ul style="list-style-type: none">
    <li>...</li>
    </ul>

    Thread Starter fireflyoftheearth

    (@fireflyoftheearth)

    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

    Thread Starter fireflyoftheearth

    (@fireflyoftheearth)

    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.

    Thread Starter fireflyoftheearth

    (@fireflyoftheearth)

    Thank you! That worked to get rid of the bullet point. 😀

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Remove bullet from post-meta’ is closed to new replies.