This topic has 4 replies, 2 voices, and was last updated 6 years, 4 months ago ago by Rose Tyler
Hi, impossible to change font in the main menu. I want to put a google font Archiva. It doesn’t work with theme options …
And i want to change the color of my footer in black.
Can U help me ?
Hello,
Thanks for contacting us.
Please provide us with your site URL and temporary wp-admin access in the Private Content area.
Regards
Ok.
infos in the Private Content Area
Thanks for your help 🙂
Hello,
1. We will fix the problem in next theme update. As a temporary solution, you can add this code in functions.php of child theme:
function etheme_get_chosen_google_font() {
$chosenFonts = array();
$fontOptions = array(
etheme_get_option('mainfont'),
etheme_get_option('header_menu_font'),
etheme_get_option('mobile_menu_font'),
etheme_get_option('mobile_menu_headings_font'),
etheme_get_option('h1'),
etheme_get_option('h2'),
etheme_get_option('h3'),
etheme_get_option('h4'),
etheme_get_option('h5'),
etheme_get_option('h6'),
etheme_get_option('sfont')
);
foreach($fontOptions as $value){
if(!empty($value['google-font']) && $value['google-font'] != 'Open+Sans')
$chosenFonts[] = $value;
}
return array_map("unserialize", array_unique(array_map("serialize", $chosenFonts)));
}
2. You can use this custom css code:
.footer.footer-bottom-2 {
background-color: black;
}
How to create custom.css you can watch in this tutorial – https://www.youtube.com/watch?v=Qok2zRedRMY.
Regards
You must be logged in to reply to this topic.Log in/Sign up