Home › Forums › CSS › [Solved] Center menu items › Reply To: [Solved] Center menu items
January 13, 2016 at 10:09 am
#236750
Member
Remove the floats
#kt-navigation li {
display: inline;
font-size: 12px;
margin: 0;
padding: 0;
/* float: left; */ /* remove the float */
position: relative;
padding: 0 30px 0 30px;
border-right: 1px solid #ffffff;
}
then set the menu to align the contents to the center
#kt-navigation {
list-style: none;
margin: 0px auto;
position: relative;
text-align: center; /* this */
}