Browse Source

Scratchpad: Correct CSS selector for Header Text Color. Fixes https://github.com/Automattic/themes/issues/53.

Laurel Fulford 7 năm trước cách đây
mục cha
commit
dfb040c46a
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      scratchpad/inc/custom-header.php

+ 2 - 1
scratchpad/inc/custom-header.php

@@ -65,7 +65,8 @@ function scratchpad_header_style() {
 		// If the user has set a custom color for the text use that.
 		else :
 	?>
-		.site-title a {
+		#masthead .site-title a,
+		#masthead .site-description {
 			color: #<?php echo esc_attr( $header_text_color ); ?>;
 		}
 	<?php endif; ?>