Make WordPress Core


Ignore:
Timestamp:
02/22/2008 07:43:06 AM (18 years ago)
Author:
westi
Message:

Styling updates for the settings pages. Fixes #5959 props iammattthomas.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-permalink.php

    r6976 r6978  
    130130<table class="niceblue">
    131131    <tr>
    132         <td><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label>
     132        <th><label><input name="selection" type="radio" value="" class="tog" <?php checked('', $permalink_structure); ?> /> <?php _e('Default'); ?></label></th>
    133133        <td><code><?php echo get_option('home'); ?>/?p=123</code></span></td>
    134134    </tr>
    135135    <tr>
    136         <td><label><input name="selection" type="radio" value="<?php echo $structures[1]; ?>" class="tog" <?php checked($structures[1], $permalink_structure); ?> /> <?php _e('Date and name based'); ?></label></td>
     136        <th><label><input name="selection" type="radio" value="<?php echo $structures[1]; ?>" class="tog" <?php checked($structures[1], $permalink_structure); ?> /> <?php _e('Date and name based'); ?></label></th>
    137137        <td><code><?php echo get_option('home') . $prefix . '/' . date('Y') . '/' . date('m') . '/' . date('d') . '/sample-post/'; ?></code></td>
    138138    </tr>
    139139    <tr>
    140         <td><label><input name="selection" type="radio" value="<?php echo $structures[2]; ?>" class="tog" <?php checked($structures[2], $permalink_structure); ?> /> <?php _e('Numeric'); ?></label></td>
     140        <th><label><input name="selection" type="radio" value="<?php echo $structures[2]; ?>" class="tog" <?php checked($structures[2], $permalink_structure); ?> /> <?php _e('Numeric'); ?></label></th>
    141141        <td><code><?php echo get_option('home') . $prefix  ; ?>/archives/123</code></td>
    142142    </tr>
    143143    <tr>
    144         <td>
     144        <th>
    145145            <label><input name="selection" id="custom_selection" type="radio" value="custom" class="tog"
    146146            <?php if ( !in_array($permalink_structure, $structures) ) { ?>
     
    150150            <?php _e('Custom Structure'); ?>
    151151            </label>
    152         </td>
     152        </th>
    153153        <td>
    154154            <input name="permalink_structure" id="permalink_structure" type="text" class="code" style="width: 60%;" value="<?php echo attribute_escape($permalink_structure); ?>" size="50" />
     
    174174    </tr>
    175175</table>
    176 <input type="submit" name="submit" class="button" value="<?php _e('Save Changes') ?>" />
     176<p class="submit"><input type="submit" name="submit" class="button" value="<?php _e('Save Changes') ?>" /></p>
    177177  </form>
    178178<?php if ( $permalink_structure && !$usingpi && !$writable ) : ?>
Note: See TracChangeset for help on using the changeset viewer.