Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #503988

    My customer doens’t have a logo. How do I add their company name, etc. to the header? How can I can control the font, size, etc?

    #503992

    Hey sbisllc!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub) {
        $sub .= "Company Name";
        return $sub;
    }

    Then you can add following code to Quick CSS in Enfold theme options under General Styling tab to adjust the color and size

    .subtext { color: orange; font-size: 20px; }

    Best regards,
    Yigit

    #504037

    Perhaps I’m missing something. I added the company name to functions.php and uploaded it to the child theme folder and added the code under the General Styling tab but the text isn’t showing up.

    #504044

    Hey!

    Please add following code to Quick CSS as well

    .logo img {
        display: none;
    }

    Cheers!
    Yigit

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