Last active
December 22, 2015 22:29
-
-
Save dovy/6540735 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
// YOUR OLD VERSION | |
array( | |
'id'=>'typography', | |
'type' => 'typography', | |
'title' => __('Typography', 'redux-framework'), | |
'subtitle'=> __('Typography option with each property can be called individually.', 'redux-framework'), | |
'default'=> array( | |
'color'=>"#333", | |
'style'=>'700', | |
'family'=>'Courier, monospace', | |
'size'=>33, | |
'height'=>'40'), | |
), | |
// MY NEW VERSION | |
array( | |
'id'=>'body-font', | |
'type' => 'typography', | |
'title' => __('Body Font', 'redux-framework'), | |
'subtitle' => __('Specify the body font properties.', 'redux-framework'), | |
'default' => array( | |
'color'=>'#dd9933', | |
'font-size'=>30, | |
'font-family'=>'Arial, Helvetica, sans-serif', | |
'font-weight'=>'Normal', | |
), | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment