- This topic has 3 replies, 2 voices, and was last updated 10 years ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
- The topic ‘nav bar color’ is closed to new replies.
Home › Community Forums › Legacy Theme Support › nav bar color
Tagged: nav bar
Hello,
Can I change the primary nav bar color? I found an image in css but changing it to a #color didn’t work.
And a note: how do I locate a css line number when it’s given in the Support answer? Currently, I just guestimate.
Thanx,
Tom
Yes just look for and change the background for this (around line 324) –
#nav {
background-image: url(images/nav-bg.png);
background-position: center top;
background-repeat: repeat-x;
clear: both;
color: #fff;
font-family: 'Oswald', arial, serif;
margin: 0 auto;
overflow: hidden;
width: auto;
}
Most developers use a text editor program (linked to an FTP program) that shows all of the code by line. You can search for the best html/css text editor depending on which OS you’re using (Mac, Linux, or PC)……and there should be plenty of tutorials out there that can help you set it up.
Thanx Wes,
I replaced background-image with background-color + #color, worked perfectly.
Thanx,
Tom
You’re Welcome!