Make WordPress Core

Ticket #1436: kubrick_description_rename.diff

File kubrick_description_rename.diff, 2.4 KB (added by myelin, 20 years ago)

Patch to rename description class to header_description in Kubrick theme

  • wp-content/themes/default/style.css

     
    9090        text-align: center;
    9191        }
    9292
    93 .description {
     93.header_description {
    9494        font-size: 1.2em;
    9595        text-align: center;
    9696        }
     
    112112        font-size: 1.3em;
    113113        }
    114114
    115 h1, h1 a, h1 a:hover, h1 a:visited, .description {
     115h1, h1 a, h1 a:hover, h1 a:visited, .header_description {
    116116        text-decoration: none;
    117117        color: white;
    118118        }
     
    302302        margin: 0;
    303303        }
    304304
    305 .description {
     305.header_description {
    306306        text-align: center;
    307307        }
    308308
  • wp-content/themes/default/functions.php

     
    88                $output .= "#header { background: url('$url') no-repeat bottom center; }\n";
    99        }
    1010        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";
    1212        }
    1313        if ( false !== ( $display = kubrick_header_display() ) ) {
    1414                $output .= "#headerimg { display: $display }\n";
     
    262262                margin: 0;
    263263        }
    264264
    265         #kubrick-header #header .description {
     265        #kubrick-header #header .header_description {
    266266                font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif;
    267267                font-size: 1.2em;
    268268                text-align: center;
     
    343343                        <div id="header">
    344344                                <div id="headerimg">
    345345                                        <h1><?php bloginfo('name'); ?></h1>
    346                                         <div class="description"><?php bloginfo('description'); ?></div>
     346                                        <div class="header_description"><?php bloginfo('description'); ?></div>
    347347                                </div>
    348348                        </div>
    349349                </div>
  • wp-content/themes/default/header.php

     
    5050<div id="header">
    5151        <div id="headerimg">
    5252                <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>
    5454        </div>
    5555</div>
    5656<hr />