Forums

[resolved] Simple CSS question! (3 posts)

  1. bryan868
    Member
    Posted 2 years ago #

    Alright, I've got a question. Here's my HTML code, now I want the "latest" class to be bulleted. What should my CSS look like?

    <div class="right_sidebar_col">
    <ul>
    <li> <h2>Header</h2>
    <ul class="latest">
    <li><a href="#">Baseball fever in the air</a></li>
    </ul>
    </li>
    </ul>
    </div>

    I tried the following, but it didn't work.

    .latest ul li{
    list-style-type: circle;
    }

  2. DianeV
    Member
    Posted 2 years ago #

    Something like this:

    ul.latest {list-style-type:circle}

  3. bryan868
    Member
    Posted 2 years ago #

    Bingo! Man, I was dumb. Thanks so much.

Topic Closed

This topic has been closed to new replies.

About this Topic