Forums

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

Home Forums CSS Centre align menu Reply To: Centre align menu

#189331
robetnobe
Participant

try this

.navbar .nav,
.navbar .nav > li {
  float:none;
  display:inline-block;
  *display:inline; /* ie7 fix */
  *zoom:1; /* hasLayout ie7 trigger */
  vertical-align: top;
}

.navbar-inner {
  text-align:center;
}

hi try adding css code like this to your site footer

.f_nav {
  width:90% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-top: 4%;
  padding-bottom: 4%;
  display:block;
  font-size:14px
  line-height:20px
  font-weight:normal
  text-transform:uppercase
  color:#d7d7d7
  text-decoration:none
}

.f_nav ul {
  margin:0;
  padding:0;
  text-align:center;
}
.f_nav ul li {
  display:inline;
}
.f_nav ul li a {
  float:none;
  display:inline-block;
}