Tagged: 

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

    Hello,

    I am building a site that uses text for the logo position via:

    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 = "My Logo Text Here";
    	$subtext  = "";
    	$subtext  = "<span class='subtext'>$subtext</span>";
        $logo     = "<h1 class='logo bg-logo'><a href='".$link."'>".$logotext."$subtext</a></h1>";

    I want to change the color style of the logo text when using the transparent header option. Currently it displays as the default color.

    #478972

    Hey ghrahams!

    Please try the following in Quick CSS under Enfold–>General Styling:

    #header_main .bg-logo {
    color:red !important;
    }

    Regards,
    Rikard

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