Forums

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

Home Forums CSS [Solved] Centering Reply To: [Solved] Centering

#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>