Archives for "October, 2009"
0
Active State in Navigation PURE CSS!
Yes it’s old thing in web-developing, you always need a active state for menu and you do it with different ways like this but i did something today, It’s not big and new tech just what i figure it out and it’s so easy to do.
HTML
<div id=”menu_wrapper”>
<ul>
<li><span>Dashboard</span></li>
<li><a href=”#”>Content</a></li>
<li><a href=”#”>Artwork</a></li>
<li><a href=”#”>Orders</a></li>
<li><a href=”#”>Users</a></li>
<li><a href=”#”>Stats</a></li>
<li><a href=”#”>Prints</a></li>
</ul>
</div>
CSS
#menu_wrapper ul{list-style:none;}
#menu_wrapper ul [...]


