Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [SOLVED] Unordered List Styling

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #25673
    crewsd
    Member

    Hi –

    I’ve been asked to make an unordered list into a paragraph with the bullets before each point like they would be in a list, but in paragraph form. I really am not sure how to do this…could somebody help? Thanks a ton!

    #61961

    It should be as simple as adding a bit of padding below each list item, correct? Basically, you’ll just need to do some CSS styling to the list items. For example:

    Code:
    • long text here…
    • long text here…

    and CSS styling:

    Code:
    .paragraph_style li { padding-bottom: 16px; }

    If you also need to indent the first line of each list item, you would use "text-indent" for that.

    #61864
    crewsd
    Member

    No – that’s not what I meant.

    I want it to be like this:
    *dot* Here is the first bullet *dot* Here is the second bullet *dot* Here is the third bullet

    Does that make sense now? :/

    #61865

    So you want to place them all in a row? You could use display:inline on your <li>s.

    #61866
    vincent
    Member

    Yeah, display:inline the list just like you would to a horizontal list nav

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘CSS’ is closed to new topics and replies.