'Typography {separator}',
'basefontsize' => 'Base Font Size ## The base font size globally affects all font sizes throughout your blog. This can be in any unit (e.g., px, pt, em), but I suggest using a percentage (%). Default is 70%.
Format: Xy where X = a number and y = its units.',
'bodyfont' => 'Base Font Family {radio|arial, helvetica, sans-serif|Arial (Helvetica, sans serif)|"courier new", courier, monospace|Courier New (Courier, monospace)|georgia, times, serif|Georgia (Times, serif)|"lucida console", monaco, monospace|Lucida Console (Monaco, monospace)|"lucida sans unicode", lucida grande, sans-serif|Lucida Sans Unicode (Lucida Grande, sans serif)|tahoma, geneva, sans-serif|Tahoma (Geneva, sans serif)|"times new roman", times, serif|Times New Roman (Times, serif)|"trebuchet ms", helvetica, sans-serif|Trebuchet MS (Helvetica, sans serif)|verdana, geneva, sans-serif|Verdana (Geneva, sans serif)} ## The base font sets the font family throughout your blog. A fall-back font and the font family are in parenthesis. Default is Verdana.',
'posttextalignment' => 'Post Text Alignment {radio|justify|Justified|left|Left aligned ("Ragged right")|right|Right aligned ("Ragged left")} ## Choose one for the text alignment of the post body text. Default is justified.',
'separ2' => 'Layout {separator}',
'singlepagelayout' => 'Single Post Layout {radio|threecolumn_single.php|Three Column|singlecolumn_single.php|One Column} ## Choose one for the single post page layout. Default is three column.',
'summaryhome' => 'Home Page {radio|index|Show the regular blog index|summary|Show the blog summary page} ## Select whether you want to show the regular blog index or the blog summary page. Important: If you choose to use the blog summary, you must have at least one comment present in your blog, otherwise you will get an error. Default is to show the regular blog index.',
),
__FILE__
);
/************************************************************************************
* FUNCTION CALLS
************************************************************************************/
function mytheme_basefontsize() {
global $mytheme;
if ( $mytheme->option['basefontsize'] ) {
print 'body {
font-size: ';
print $mytheme->option['basefontsize'];
print ";";
}
}
function mytheme_bodyfont() {
global $mytheme;
if ( $mytheme->option['bodyfont'] ) {
print '
font-family: ';
print $mytheme->option['bodyfont'];
print ";
}\n";
}
}
function mytheme_posttextalignment() {
global $mytheme;
if ( $mytheme->option['posttextalignment'] ) {
print 'div.post-entry p { text-align: ';
print $mytheme->option['posttextalignment'];
print "; }\n";
}
}
function mytheme_singlepagelayout() {
global $mytheme;
if ($mytheme->option['singlepagelayout'] == 'threecolumn_single.php') {
print '
'.get_header().'
'.get_sidebar().'