inherit
115854
0
May 11, 2011 3:08:00 GMT -8
Zero degreez
860
December 2007
petersons
|
Post by Zero degreez on Nov 3, 2009 12:25:21 GMT -8
Hi guys i was wondering if anyone could point me in the direction of a good CSS drop down navbar that i could use on my website?
|
|
inherit
130228
0
Jul 11, 2024 19:19:59 GMT -8
Charles Stover
1,731
August 2008
gamechief
|
Post by Charles Stover on Nov 3, 2009 14:38:27 GMT -8
I don't feel like going through it to edit out the style information, so you'll have to customize it yourself to have it match your website.
ul#navigation { font-family : "Tahoma", "Verdana", Sans-Serif; font-size : 10pt; height : 15pt; margin-bottom : 24pt; }
ul#navigation, ul#navigation ul { list-style : none; z-index : 1; }
ul#navigation a { color : #303030; font-weight : bold; padding : 1pt 3pt; text-decoration : none; white-space : nowrap; z-index : 2; }
ul#navigation a, ul#navigation li { display : block; position : relative; }
ul#navigation li { background-color : #ffffff; border : #ffffff solid 1px; cursor : default; float : left; min-width : 72pt; }
ul#navigation li:hover { border-color : #000000; }
ul#navigation li:hover > a { text-decoration : underline; }
ul#navigation li:hover > ul { display : block; }
ul#navigation ul { border-color : #000000; border-style : solid; border-width : 0 1px 1px 1px; display : none; margin : -1px 0 0 -1px; padding : 0; position : absolute; }
ul#navigation ul li { border-width : 0; width : 100%; }
ul#navigation ul li:hover > ul { border-width : 1px; left : 100%; margin-left : 0; top : 0; }
|
|