wersja skryptu MyBB: 1.6.9
adres forum: http://www.vobiso.onuse.pl/
na czym polega problem (screen, opis, komunikaty, nazwa stylu/theme/szablonu):
Witam.
Jak mogę rozciągnąć tabele nawigacji z dwóch stron..
Screen
Spróbuj zamienić twój kod :
Kod:
.navigation {
color: #555;
font-size: 11px;
}
na ten :
Kod:
.navigation {
color: #555;
font-size: 11px;
position: absolute; left: 0px; right: 0px;
}
Nie wiem czy o to Ci chodzi...
w .navigation
dopisz
Kod:
margin-left: -10px;
margin-right: -10px;
czyli ma być tak:
Kod:
.navigation {
background-image: -webkit-linear-gradient(bottom, #e7eaed 0%, #d9e0e3 15%, #eeeff2 50%, #fff 90%);
position: relative;
top: -4px;
color: #777;
border-bottom: 1px solid #7794a8;
padding: 12px;
height: 5px;
margin-bottom: 12px;
border-radius: 0px 0px 3px 3px;
font-size: 11px;
font-weight: bold;
margin-left: -10px;
margin-right: -10px;
}