menu color in 2011
-
HI,
I need some help changing the menu color on my wordpress site with 2011 theme… I want the menu to have a
Horizontal Gradient with color from #005d9a to #08a0ffBelow is my current styles.css file if someone can tell me what needs be changed or added to show the Horizontal Gradient on all browser would be awesome:
#access {
background: #005d9a; /* Show a solid color for older browsers */
background: -moz-linear-gradient(#005d9a, #08a0ff);
background: -o-linear-gradient(#005d9a, #08a0ff);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#005d9a), to(#08a0ff)); /* older webkit syntax */
background: -webkit-linear-gradient(#005d9a, #08a0ff);
-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
clear: both;
display: block;
float: right;
margin: 0 auto 6px;
width: 100%;
The topic ‘menu color in 2011’ is closed to new replies.