Changeset 23492
- Timestamp:
- 02/26/2013 04:50:09 AM (13 years ago)
- Location:
- trunk/wp-content/themes/twentythirteen
- Files:
-
- 4 edited
-
header.php (modified) (1 diff)
-
inc/custom-header.php (modified) (1 diff)
-
js/theme-customizer.js (modified) (1 diff)
-
style.css (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/twentythirteen/header.php
r23452 r23492 40 40 <div id="page" class="hfeed site"> 41 41 <header id="masthead" class="site-header" role="banner"> 42 <hgroup> 43 <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> 44 <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> 45 </hgroup> 42 <a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"> 43 <hgroup> 44 <h1 class="site-title"><?php bloginfo( 'name' ); ?></h1> 45 <h2 class="site-description"><?php bloginfo( 'description' ); ?></h2> 46 </hgroup> 47 </a> 46 48 47 49 <div id="navbar" class="navbar"> -
trunk/wp-content/themes/twentythirteen/inc/custom-header.php
r23452 r23492 113 113 elseif ( $text_color != get_theme_support( 'custom-header', 'default-text-color' ) ) : 114 114 ?> 115 .site-title a,115 .site-title, 116 116 .site-description { 117 color: #<?php echo esc_attr( $text_color ); ?> !important;117 color: #<?php echo esc_attr( $text_color ); ?>; 118 118 } 119 119 <?php endif; ?> -
trunk/wp-content/themes/twentythirteen/js/theme-customizer.js
r23452 r23492 10 10 wp.customize( 'blogname', function( value ) { 11 11 value.bind( function( to ) { 12 $( '.site-title a' ).text( to );12 $( '.site-title' ).text( to ); 13 13 } ); 14 14 } ); -
trunk/wp-content/themes/twentythirteen/style.css
r23491 r23492 829 829 .site-header a { 830 830 color: #141412; 831 text-decoration: none; 832 } 833 834 .site-header .site-title:hover { 835 text-decoration: underline; 831 836 } 832 837 … … 1006 1011 } 1007 1012 1008 .navbar-fixed #masthead .site-title a{1009 color: #141412 !important; /* Must override custom header text color. */1013 .navbar-fixed #masthead .site-title { 1014 color: #141412; 1010 1015 } 1011 1016
Note: See TracChangeset
for help on using the changeset viewer.