Forums

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

Home Forums CSS [Solved] trying to center header title and navigation Reply To: [Solved] trying to center header title and navigation

#201346
Paulie_D
Member

If you are absolutely determined to have the nav at position:absolute then all you have to do is make it 100% wide.

@media only screen and (min-width: 769px)
header nav {
  position: absolute;
  margin-top: 0px;
  width: 100%;
}

The ul is 100% wide by default and has text-align:center so the li will center automatically.