Viewing 8 replies - 1 through 8 (of 8 total)
  • this will do it:

    #sidebar li {list-style-type: none;}

    Thread Starter royal

    (@royal)

    Indeed it did. Thanks.

    Thread Starter royal

    (@royal)

    Aha! Well I’m almost there. I’ve successfully removed the bullets, however I’m left with a gap. I’ve been tweaking the CSS but can’t seem to get it right.

    Any suggestions on getting those h2’s in the sidebar to align left with no padding?

    This happened to me too… try something like:

    #sidebar h2 {text-align:left; padding: 0px;}

    Is there a way to edit the default HTML that is inserted when you use the <?php get_links_list(); ?> tag? It automatically puts it into a

    • list but I don’t really want it to… I want to output it a little differently. Is there a way?
    Thread Starter royal

    (@royal)

    How are you trying to output it?

    Thread Starter royal

    (@royal)

    Oh.. I’ve already got this in the CSS:

    #sidebar h2 {text-align:left; padding: 0px;}

    So.. I’m not sure what else to do?!

    When you use the <?php get_links_list() ?> tag it automatically outputs in this format:

    <li id="linkcat-1"><h2>Blogroll</h2>
    <ul>
    <li><a href="http://example1.com/">Blogroll Link 1</a></li>
    <li><a href="http://example2.com/">Blogroll Link 2</a></li>
    <li><a href="http://example3.com/">Blogroll Link 3</a></li>
    </ul>
    </li>

    and I don’t want it to do that. Is there a way to change it?

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Removing bullets from list titles’ is closed to new replies.