I would like to change the font family, font color, and background color in the primary nav bar on the landing page (the navigation that runs across the top of the page).
1 Answers
@somavision hi: to change the font family, font color and back ground in primary nav-bar you can try this :
Open file style.css and add this code:
.nav-main {
background-color: < background color >;
}
.nav-main ul li a {
color: < text color >;
font-family: < font family >;
}
You can also make back ground become image by add background-image: < image url >
to .nav-main{}
Glad
u Rock!
Please login or Register to submit your answer