From c48207293202a2f70934a2249d75d45515400645 Mon Sep 17 00:00:00 2001 From: Mignon Style Date: Fri, 9 Jan 2015 17:09:22 +0900 Subject: [PATCH] Reflect the change of color in the customizer. Fixed ".site-title" to ".site-title a". --- js/customizer.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/customizer.js b/js/customizer.js index 16fef19e..a83540dd 100644 --- a/js/customizer.js +++ b/js/customizer.js @@ -20,12 +20,12 @@ wp.customize( 'header_textcolor', function( value ) { value.bind( function( to ) { if ( 'blank' === to ) { - $( '.site-title, .site-description' ).css( { + $( '.site-title a, .site-description' ).css( { 'clip': 'rect(1px, 1px, 1px, 1px)', 'position': 'absolute' } ); } else { - $( '.site-title, .site-description' ).css( { + $( '.site-title a, .site-description' ).css( { 'clip': 'auto', 'color': to, 'position': 'relative'