• Maybe this is stupid, but you know the bullets before the categories or that go before the months under archives? How do I get rid of that?

Viewing 5 replies - 1 through 5 (of 5 total)
  • Try this rule in your CSS file:
    #menu ul {
    list-style: none;
    }

    If you want to remove the margin and padding from those add margin: 0; padding: 0; to that rule. You can look at the included wp-layout.css or any other of the dozens of CSS files available for WordPress to see other ways to style the menu lists.

    Thread Starter Anonymous
    Thread Starter Anonymous

    Thank you so much! 🙂 This support forum rocks.

    Thread Starter Anonymous

    Ugh. =| For some reason it works when I use the wp-layout.css but not if I stick it in my own .css file.

    In your index.php file, there is an @import statement that points to the wp-layout.css file. If you don’t want to use the wp-layout.css file in favour of your own custom one, just go into index.php, and in the < head > section near the top, you will find the line that is calling wp-layout.css…simply edit that line to the path and name of your custom css file.

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

The topic ‘Bullets’ is closed to new replies.