Forums

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

Home Forums CSS [Solved] Centering

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #175925
    pvl123
    Participant

    Hi I dont know how to get my list to position just like on screenshot. https://flic.kr/p/op6Bqa

    http://merecepty.uphero.com

    #175926
    TheDutchCoder
    Participant

    In your CSS, set:

    body {
      text-align center;
    }
    
    #mn ul {
      display: inline-block;
    }
    

    Also, your HTML is invalid, you shouldn’t put an a around your li, but rather put it inside like so:

    <ul>
      <li>
        <a href=#>stuff</a>
      </li>
    </ul>
    
    #175928
    pvl123
    Participant

    I didint think that is so simple, Thank you very much!

    #175935
    TheDutchCoder
    Participant

    No worries!

    Good CSS is simple CSS ;-)

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