On January 9, 2014 at 10:33 am
hmm… this is a bug. You can fix it by opening asteria-config.php and find this:
array(
'id'=>'slidefont_size_id',
'type' => 'typography',
'title' => __('Slide Font Style', 'asteria'),
'google'=>false,
'subsets' => false,
'font-weight' => false,
'font-style' => false,
'font-backup' => false,
'color' => false,
'preview' => false,
'line-height' => false,
'word-spacing' => false,
'letter-spacing' => false,
'font-size'=>true,
'font-family'=>false,
'default' => array(
'font-size'=>'60px',
),
),
and replace them with:
array(
'id'=>'slidefont_size_id',
'type' => 'text',
'title' => __('Slide Font Style', 'asteria'),
'default' => '60px'
),
then you can change the slider font size.