From f2722f9b3f18cc7ce5678a3cc3daa59457d953e6 Mon Sep 17 00:00:00 2001 From: carl alberto Date: Mon, 27 Jul 2015 23:32:21 +0800 Subject: [PATCH] Fix for open issue #768 (Site title color in the Customizer) This fixes the header text color link (blogname) to also update the same way as the blogdescription Fix for open issue #768 (Site title color in the Customizer) Fixed the missing Blog title text when "Display Header Text "option in the Customizer is toggled on/off Updated the code to adjust the css color of .site-title a Fix for the header color issue #816 --- js/customizer.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/js/customizer.js b/js/customizer.js index 16fef19e..955d28f1 100644 --- a/js/customizer.js +++ b/js/customizer.js @@ -1,4 +1,6 @@ /** + * customizer.js + * * Theme Customizer enhancements for a better user experience. * * Contains handlers to make Theme Customizer preview reload changes asynchronously. @@ -27,9 +29,11 @@ } else { $( '.site-title, .site-description' ).css( { 'clip': 'auto', - 'color': to, 'position': 'relative' } ); + $( '.site-title a, .site-description' ).css( { + 'color': to + } ); } } ); } );