Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #492057

    hey guys

    I inserted the code below under functions-enfold.php. I took it from another website of ours and changed the logotext. But how do I change font-size (make it bigger), color (to #8c5656) and font-family (open sans)?

    add_filter(‘avf_logo_final_output’, ‘avf_text_logo_final_output’);

    function avf_text_logo_final_output($logo) {
    $link = apply_filters(‘avf_logo_link’, home_url(‘/’));
    $logotext = “Wohnen am Wehrenbach”;
    $logotext= “<span class=’logotext’>$logotext</span>”;
    $subtext = “”;
    $subtext = “<span class=’subtext’>$subtext</span>”;
    $logo = “<h2 class=’logo bg-logo’>“.$logotext.”$subtext</h2>”;

    return $logo;
    }

    Thanks for the help

    #492087

    Hi Aline!

    Please move the code from functions-enfold.php file to functions.php file and then add following code to Quick CSS

    .logotext { font-size: 30px; }

    Cheers!
    Yigit

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.