This topic has 6 replies, 3 voices, and was last updated 8 years, 2 months ago ago by Eva Kemp
Hi there,
I would like to change the nav bar, I would like the page titles to be spaced out more and change the background colour of the nav bar itself as well as the text colour.
Please see private content for image links
Hello,
Add this code in 8theme options->Styling->custom CSS->Global Custom CSS.
.menu-wrapper {
background-color: red;
}
.menu > li > a {
color: #fff;
}
.title h1 {
font-size: 4.571em;
}
Regards,
Robert Hall
Hi Rob,
that’s great, although it hasn’t spaced the headers out as much as I would have liked?
I want to increase the width between the headers in the nav bar so that they are spread out accross the entire nav bar.
Hello,
Add this code in Global Custom CSS and play with that padding values.
.menu > li > a {
padding: 20px 35px 15px 35px;
}
Regards,
Robert Hall
That’s great, finally, do you have custom CSS to change the font (google fonts) in the nav bar titles?
Hello,
Use this css code:
.menu > li > a {
font-family: open sans !important;
}
Write the font you need.
Regards,
Eva Kemp.
You must be logged in to reply to this topic.Log in/Sign up