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

    When I visit this web site, I can see the “Kriesi.at Premium Themes” beside the logo. It disappear when menu section become smaller.

    Where can I edit the text ?
    And can I add some tag in the section?

    #320215

    Hey idpokute!

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

    add_filter('avf_logo_subtext', 'avf_add_logo_text');
    function avf_add_logo_text($sub)
    {
    	$sub = "<strong class='logo-2'>your text goes here";
    	return $sub;
    }

    Then add following code to Quick CSS in Enfold theme options under General Styling tab

    .header-scrolled .logo-2 { opacity: 0; }

    Regards,
    Yigit

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