Hi, ich möchte bei dieser Seite: http://www.subdivo.bplaced.de/wordpress die obere Navigationsbar, bzw die Elemente/Hyperlinks "Contact" "about" etc. in die Mitte der Navigationsbar bringen, statt - wie jetzt - links am Rand... leider blieben meine Versuche im CSS Stylesheet erfolglos... Den richtigen Abschnitt habe ich aber glaube ich gefunden...
CSS
/* =Main Navigation-------------------------------------------------------------- */
.admin-bar .navbar-fixed-top {
top: 32px;
}
@media (max-width: 768px) {
.admin-bar .navbar-fixed-top {
top: 46px;
}
}
@media (max-width: 480px) {
.navbar-fixed-top {
top: 0 !important;
position: absolute;
}
}
.navbar-inverse {
text-align: center;
background: rgba(0, 0, 0, 0.6);
border: 0;
}
.navbar-inverse.black {
background: rgba(0, 0, 0, 0.85);
}
@media (max-width: 480px) {
.navbar-inverse {
background: rgba(0, 0, 0, 0.85);
}
}
.dropdown-menu > li > a,
.navbar-nav > li > a {
color: #999;
}
.black .dropdown-menu > li > a:hover {
background: #333;
}
.dropdown-menu {
background: #080808;
}
.dropdown-menu a:hover {
background: #444 !important;
color: #fff !important;
}
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
background-color: #444;
}
Alles anzeigen
Weiss jemand wie das geht?