inherit
191814
0
Mar 16, 2014 14:50:31 GMT -8
Incompetent Egoist
Check out All Damned today!
309
March 2013
timeruinsalpha
|
Post by Incompetent Egoist on Mar 8, 2014 8:16:38 GMT -8
Can someone create a code for me involving the navigation menu? I would like the buttons under the banner in my Global Headers. I would like the buttons to be in rectangles and fade in and out when you roll over them. Can someone get this code for me? Or at least how to customize your navigation menu yourself at least? I can figure out the rectangle and fade in and out myself. Help me pleasey~
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Mar 10, 2014 7:50:24 GMT -8
You can probably just use css (put at the bottom of your style sheet)
/* move navigation */ #navigation-menu{position:relative;top:200px;left:1px; } #navigation-menu > ul li a{background-color:blue; } #navigation-menu > ul li a.state-active{background-color:blue; } #navigation-menu > ul li a:hover{background-color:red; }
Adjust the top:200; and left: 1px to get it where you want it.
|
|