TRVL Theme Menu color
-
I’d like to change the colors on my header menu from teal/red to Pink (like the header image)/white
I already added this code to move the menu up:
body {
position: relative;
padding-top: 10px;
}.navigation-main {
position: absolute;
top: 0;
}What code will change the font colors of the menu items and where do I put it?
Just started CSS today, so generally clueless.
thanks
-g
http://www.bibirizer.comThe blog I need help with is: (visible only to logged in users)
-
Hi there,
Your blog is currently set to private which means volunteers can’t help you. If you are willing to make your site public for at least as long as it takes to add the code you need I’m happy to help. If you’d rather not go public, let me know and I’ll mark this thread for staff to come help you as soon as they can (Staff can see private blogs, so you won’t have to make it public).
-
-
Try pasting this in under the styles you’ve already added to your CSS:
.navigation-main a { color:#fff; } .navigation-main a:hover { color:#F136CE; border-color:#F136CE; } -
I think this will do it!
.navigation-main li a{ color: #F136c3 !important; } .navigation-main li a:hover{ color: white !important; border-bottom: 3px solid white; } .navigation-main li a::selection{ background: none; }
- The topic ‘TRVL Theme Menu color’ is closed to new replies.