Changeset 688885
- Timestamp:
- 03/29/2013 04:29:27 PM (13 years ago)
- File:
-
- 1 edited
-
wp-fontsize/trunk/wp_fontsize.php (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-fontsize/trunk/wp_fontsize.php
r660313 r688885 5 5 Description: Adds Stateful Fontsize Adjustment Classes to the body of the Website 6 6 Author: Circle Tree, LLC 7 Version: 0. 6.57 Version: 0.7 8 8 Author URI: http://mycircletree.com/ 9 9 */ … … 63 63 .wp_fontsize_wrapper 64 64 { 65 position: absolute;65 position: fixed; 66 66 right: 0px; 67 67 top: 0px; … … 77 77 padding-right: 2.3em; 78 78 line-height: 2; 79 } 80 .admin-bar .wp_fontsize_wrapper { 81 top: 32px; 79 82 } 80 83 .wp_fontsize_wrapper LABEL … … 119 122 public static function html () { ?> 120 123 <div class="wp_fontsize_wrapper" id="wp_fontsize_wrapper"> 121 <label title="<?php _ _('Adjust the font size of the website', 'wp_fontsize')?>"><?php __('Font Size:', 'wp_fontsize');?></label>124 <label title="<?php _e('Adjust the font size of the website', 'wp_fontsize')?>"><?php _e('Font Size:', 'wp_fontsize');?></label> 122 125 <ul> 123 <li id="wpFontMinus" class="minus"><?php _ _('-', 'wp_fontsize')?></li>124 <li id="wpFontPlus" class="plus"><?php _ _('+', 'wp_fontsize');?></li>126 <li id="wpFontMinus" class="minus"><?php _e('-', 'wp_fontsize')?></li> 127 <li id="wpFontPlus" class="plus"><?php _e('+', 'wp_fontsize');?></li> 125 128 </ul> 126 129 </div> … … 178 181 function footer () { 179 182 ob_start(array($this, 'min')); 180 if ( WP_FONTSIZE_HTML)183 if ( WP_FONTSIZE_HTML ) 181 184 $this->html(); 182 if ( WP_FONTSIZE_CSS)185 if ( WP_FONTSIZE_CSS ) 183 186 $this->css(); 184 187 $this->js();
Note: See TracChangeset
for help on using the changeset viewer.