Függőleges menü 26.
Menü kód
<ul id="fixmenu">
<li>
<a href="http://">menü 1</a></li>
<li>
<a href="http://">menü 2</a></li>
<li>
<a href="http://">menü 3</a></li>
</ul>
CSS kód
<style type="text/css">
#fixmenu {
position: fixed;
left: 0;
top: 50%;
width: 110px;
background-color: #A9D453;
border: 3px solid #9DCC41;
border-right: none;
padding: 15px 0px 15px 35px;
box-shadow: 0 1px 3px #000000;
border-radius: 0.5em 3em 3em 0.5em;
color: white;
}
#fixmenu li { margin: 0 }
#fixmenu a {
color: #ffffff;
font-family: times new roman !important;
color: white;
font-weight: bold !important;
font-style: italic;
font-size: 20px !important;
text-align: left;
}
#fixmenu a:hover {
color: #DFEFBE;
}
/* Make menu absolute, not fixed, on IE 5 & 6 */
#fixmenu { position: absolute }
*>#fixmenu { position: fixed }
p.stb { text-indent: 0; margin-top: 0.83em }
p.mtb { text-indent: 0; margin-top: 2.17em }
p.ltb { text-indent: 0; margin-top: 3.08em }</style>
|