Change font of the main menu – Footer Color

This topic has 4 replies, 2 voices, and was last updated 5 years, 9 months ago ago by Rose Tyler

  • Avatar: colfingweb
    colfingweb
    Participant
    July 4, 2018 at 10:01

    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 ?

    3 Answers
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 4, 2018 at 14:12

    Hello,

    Thanks for contacting us.
    Please provide us with your site URL and temporary wp-admin access in the Private Content area.

    Regards

    Avatar: colfingweb
    colfingweb
    Participant
    July 4, 2018 at 15:29

    Ok.

    infos in the Private Content Area
    Thanks for your help 🙂

    Please, contact administrator
    for this information.
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    July 5, 2018 at 09:28

    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

  • Viewing 4 results - 1 through 4 (of 4 total)

You must be logged in to reply to this topic.Log in/Sign up

We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.