12.12.2015, 00:43
wersja skryptu MyBB:
adres forum: http://phs-et.pl || NEW StYL
na czym polega problem (screen, opis, komunikaty):
Witam problem z rozsuwanym menu.Menu rozsuwa sie w prawa strone ,a chce zeby bylo pionowo.
http://zapodaj.net/0b40e1646b102.png.html
Header
scc:
adres forum: http://phs-et.pl || NEW StYL
na czym polega problem (screen, opis, komunikaty):
Witam problem z rozsuwanym menu.Menu rozsuwa sie w prawa strone ,a chce zeby bylo pionowo.
http://zapodaj.net/0b40e1646b102.png.html
Header
Kod PHP:
<ul class="menu_top">
<ol id="menu">
<li><a href="#">TEST</a>
<ul>
<li><a href="/index.php">STRONA GŁÓWNA</a></li>
<li><a href="/memberlist.php">UŻYTKOWNICY</a></li>
<li><a href="http://www.phs-et.pl/Generator.php" title="KOLOROWY NICK"><font color="#8AA4B7">KOLOROWY<font color="#CD5700">NICK<i style="font-size: 14px;" class=""></i></font></a></li>
scc:
Kod PHP:
#menu > li > ul {
transform:scaleY(0);
-webkit-transform:scaleY(0);
transform-origin:50% 0;
-webkit-transform-origin:50% 0;
transition:250ms;
}
/* wygląd elementów - ul - po najechaniu kursorem myszki na element - li */
#menu > li:hover > ul {
transform:scaleY(1);
-webkit-transform:scaleY(1);
}