Home › Forums › CSS › [Solved] trying to center header title and navigation › Reply To: [Solved] trying to center header title and navigation
April 30, 2015 at 2:35 am
#201346
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.