Not sure how to edit the CSS
-
I want to change the menu bar to the same grey as my logo colour but the tutorials I have seen don’t look like this
#access {
background: #222; /* Show a solid color for older browsers */
background: -moz-linear-gradient(#252525, #0a0a0a);
background: -o-linear-gradient(#252525, #0a0a0a);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0a0a0a)); /* older webkit syntax */
background: -webkit-linear-gradient(#252525, #0a0a0a);
-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: left;
margin: 0 auto 6px;
width: 100%;What am I meant to change?
The blog I need help with is: (visible only to logged in users)
-
Does this help you?
https://en.forums.wordpress.com/topic/change-menu-color?replies=6#post-628913
- The topic ‘Not sure how to edit the CSS’ is closed to new replies.