Ticket #1436: kubrick_description_rename.diff
File kubrick_description_rename.diff, 2.4 KB (added by , 20 years ago) |
---|
-
wp-content/themes/default/style.css
90 90 text-align: center; 91 91 } 92 92 93 . description {93 .header_description { 94 94 font-size: 1.2em; 95 95 text-align: center; 96 96 } … … 112 112 font-size: 1.3em; 113 113 } 114 114 115 h1, h1 a, h1 a:hover, h1 a:visited, . description {115 h1, h1 a, h1 a:hover, h1 a:visited, .header_description { 116 116 text-decoration: none; 117 117 color: white; 118 118 } … … 302 302 margin: 0; 303 303 } 304 304 305 . description {305 .header_description { 306 306 text-align: center; 307 307 } 308 308 -
wp-content/themes/default/functions.php
8 8 $output .= "#header { background: url('$url') no-repeat bottom center; }\n"; 9 9 } 10 10 if ( false !== ( $color = kubrick_header_color() ) ) { 11 $output .= "#headerimg h1 a, #headerimg h1 a:visited, #headerimg . description { color: $color; }\n";11 $output .= "#headerimg h1 a, #headerimg h1 a:visited, #headerimg .header_description { color: $color; }\n"; 12 12 } 13 13 if ( false !== ( $display = kubrick_header_display() ) ) { 14 14 $output .= "#headerimg { display: $display }\n"; … … 262 262 margin: 0; 263 263 } 264 264 265 #kubrick-header #header . description {265 #kubrick-header #header .header_description { 266 266 font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; 267 267 font-size: 1.2em; 268 268 text-align: center; … … 343 343 <div id="header"> 344 344 <div id="headerimg"> 345 345 <h1><?php bloginfo('name'); ?></h1> 346 <div class=" description"><?php bloginfo('description'); ?></div>346 <div class="header_description"><?php bloginfo('description'); ?></div> 347 347 </div> 348 348 </div> 349 349 </div> -
wp-content/themes/default/header.php
50 50 <div id="header"> 51 51 <div id="headerimg"> 52 52 <h1><a href="<?php echo get_settings('home'); ?>/"><?php bloginfo('name'); ?></a></h1> 53 <div class=" description"><?php bloginfo('description'); ?></div>53 <div class="header_description"><?php bloginfo('description'); ?></div> 54 54 </div> 55 55 </div> 56 56 <hr />