This topic has 6 replies, 3 voices, and was last updated 9 years, 5 months ago ago by Stan Russell
I am looking for some code to remove the WPML section of the top bar as i would like to still have the account section of it, but am not currently creating a multilingual site. and I wanted to see if i can get a code to make the whole header section have a black background and white text (specifically the menu).
thank you very much for your help.
Hello,
Add an empty “Text” widget into “Place in header to bar” area in Appearance > Widgets.
Best regards,
Jack Richardson.
Ok awesome! that worked for that. What about the header edits?
thank you very much for your help.
Hello,
To change header background and menu text color you can use the following css code in custom.css:
.menu > li > a {
color: white !important;
}
.header.main-header {
background-color: black !important;
}
And for the fixed header:
.fixed-header {
background-color: black !important;
}
How to create custom.css you can watch in this tutorial (it’s for Legenda theme but the process is the same).
Best regards,
Jack Richardson.
That worked, only there is a little white boarder at the bottom in both fixed and normal modes, also can i get a code for turning the shopping cart text white, and I can’t seem to remove the gap above the slider on the homepage.
Hello,
please add following css code to your custom.css file:
.shop-text{
color: white;
}
.main-header{
margin-bottom:-30px;
}
and check your site.
Regards,
Stan Russell.
You must be logged in to reply to this topic.Log in/Sign up