|
1 <?php global $wptouch_settings; ?> |
|
2 |
|
3 <div class="metabox-holder"> |
|
4 <div class="postbox"> |
|
5 <h3><span class="style-options"> </span><?php _e( "Style & Color Options", "wptouch" ); ?></h3> |
|
6 |
|
7 <div class="left-content skins-left-content"> |
|
8 <p><?php _e( "Here you can customize some of the more prominent style features of WPtouch.", "wptouch" ); ?></p> |
|
9 </div> |
|
10 |
|
11 <div class="right-content skins-fixed"> |
|
12 |
|
13 |
|
14 <!-- Default skin --> |
|
15 |
|
16 <div class="skins-desc" id="default-skin"> |
|
17 <p><?php _e( "The default WPtouch skin emulates a native iPhone application.", "wptouch" ); ?></p> |
|
18 <ul class="wptouch-make-li-italic"> |
|
19 <li><select name="style-background"> |
|
20 <option <?php if ($wptouch_settings['style-background'] == "classic-wptouch-bg") echo " selected"; ?> value="classic-wptouch-bg"> |
|
21 <?php _e( "Classic", "wptouch" ); ?> |
|
22 </option> |
|
23 <option <?php if ($wptouch_settings['style-background'] == "horizontal-wptouch-bg") echo " selected"; ?> value="horizontal-wptouch-bg"> |
|
24 <?php _e( "Horizontal Grey", "wptouch" ); ?> |
|
25 </option> |
|
26 <option <?php if ($wptouch_settings['style-background'] == "diagonal-wptouch-bg") echo " selected"; ?> value="diagonal-wptouch-bg"> |
|
27 <?php _e( "Diagonal Grey", "wptouch" ); ?> |
|
28 </option> |
|
29 <option <?php if ($wptouch_settings['style-background'] == "skated-wptouch-bg") echo " selected"; ?> value="skated-wptouch-bg"> |
|
30 <?php _e( "Skated Concrete", "wptouch" ); ?> |
|
31 </option> |
|
32 <option <?php if ($wptouch_settings['style-background'] == "argyle-wptouch-bg") echo " selected"; ?> value="argyle-wptouch-bg"> |
|
33 <?php _e( "Argyle Tie", "wptouch" ); ?> |
|
34 </option> |
|
35 <option <?php if ($wptouch_settings['style-background'] == "grid-wptouch-bg") echo " selected"; ?> value="grid-wptouch-bg"> |
|
36 <?php _e( "Thatches", "wptouch" ); ?> |
|
37 </option> |
|
38 </select> |
|
39 <?php _e( "Background", "wptouch" ); ?> |
|
40 </li> |
|
41 <li><select name="h2-font"> |
|
42 <option <?php if ($wptouch_settings['h2-font'] == "Helvetica Neue") echo " selected"; ?> value="Helvetica Neue"> |
|
43 <?php _e( "Helvetica Neue", "wptouch" ); ?> |
|
44 </option> |
|
45 <option <?php if ($wptouch_settings['h2-font'] == "Helvetica") echo " selected"; ?> value="Helvetica"> |
|
46 <?php _e( "Helvetica", "wptouch" ); ?> |
|
47 </option> |
|
48 <option <?php if ($wptouch_settings['h2-font'] == "thonburi-font") echo " selected"; ?> value="thonburi-font"> |
|
49 <?php _e( "Thonburi", "wptouch" ); ?> |
|
50 </option> |
|
51 <option <?php if ($wptouch_settings['h2-font'] == "Georgia") echo " selected"; ?> value="Georgia"> |
|
52 <?php _e( "Georgia", "wptouch" ); ?> |
|
53 </option> |
|
54 <option <?php if ($wptouch_settings['h2-font'] == "Geeza Pro") echo " selected"; ?> value="Geeza Pro"> |
|
55 <?php _e( "Geeza Pro", "wptouch" ); ?> |
|
56 </option> |
|
57 <option <?php if ($wptouch_settings['h2-font'] == "Verdana") echo " selected"; ?> value="Verdana"> |
|
58 <?php _e( "Verdana", "wptouch" ); ?> |
|
59 </option> |
|
60 <option <?php if ($wptouch_settings['h2-font'] == "Arial Rounded MT Bold") echo " selected"; ?> value="Arial Rounded MT Bold"> |
|
61 <?php _e( "Arial Rounded MT Bold", "wptouch" ); ?> |
|
62 </option> |
|
63 </select> |
|
64 <?php _e( "Post Title H2 Font", "wptouch" ); ?> |
|
65 </li> |
|
66 <li>#<input type="text" id="header-text-color" name="header-text-color" value="<?php echo $wptouch_settings['header-text-color']; ?>" /><?php _e( "Title text color", "wptouch" ); ?></li> |
|
67 <li>#<input type="text" id="header-background-color" name="header-background-color" value="<?php echo $wptouch_settings['header-background-color']; ?>" /><?php _e( "Header background color", "wptouch" ); ?></li> |
|
68 <li>#<input type="text" id="header-border-color" name="header-border-color" value="<?php echo $wptouch_settings['header-border-color']; ?>" /><?php _e( "Sub-header background color", "wptouch" ); ?></li> |
|
69 <li>#<input type="text" id="link-color" name="link-color" value="<?php echo $wptouch_settings['link-color']; ?>" /><?php _e( "Site-wide links color", "wptouch" ); ?></li> |
|
70 </ul> |
|
71 </div> |
|
72 |
|
73 </div><!-- right content --> |
|
74 <div class="bnc-clearer"></div> |
|
75 </div><!-- postbox --> |
|
76 </div><!-- metabox --> |