• I’m trying to do something very straight forward. Change the text color of the Site Title using Powerpack Designer, I have:

    1. Created a Header style.
    2. Changed Text Color to black.
    3. Save & Publish.

    No change.

    However, the Site Title is a link (should not be) and apparently not text which makes no sense since the Designer Header has a text color option.

    If I go to Header, not within Powerpack, and change Link Color it will be reflected in all links including the Site Title (which is a link for some reason).

    Seems to me there should not be a dependency such that Site Title should use the Link Color value.

    Appreciate any help.

    Jerry

    https://www.webdezeinstore.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    If I go to your site, this is what the url looks like and I get all”nothing found” pages.

    https://webdezeinstore.com/?v=796834e7a283

    How come your site does not show on the actual: https://www.webdezeinstore.com

    Not sure, but maybe that has something to do with you not seeing the actual changes made in Powerpack?

    Annie

    Hi Jerry,

    Sorry for the delay getting back to you.

    It’s not actually possible to change the site title color currently in Powerpack. We’ll look in to that for the next release. For now, you can add a code snippet to enable this;

    add_filter( 'sp_designer_selectors_map', 'jk_new_selectors' );
    function jk_new_selectors( $map ) {
    		$map['site-title'] = array(
    			'selector' => '.site-branding .site-title a',
    			'name'     => __( 'Site title' ),
    		);
    
     	return $map;
    }

    Add that to your child themes functions.php file and you should then be able to select the site title in the Customizer.

    Cheers

    • This reply was modified 8 years, 3 months ago by James Koster.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Designer Header Style Text Color Does not Change’ is closed to new replies.