• I was able to add new fonts to the drop downswhere you define fonts for the text. Then I had to add the font definition into the CSS.

    Is there a possibility the font definitions could be kept on a database table, so the drop down contents will be available over upgrades.

    I would like to see the ability to configure the fonts and colours of more standard features throughout the template without having to restort to css hacks

Viewing 1 replies (of 1 total)
  • Hi,
    You can set any custom font in subtheme’s file config.php, found code like next:

    "fonts"     => array(
                'title' => array('family' => '"Comic Sans MS",Helvetica,sans-serif',
                                 'size'   => 64,
                                 'weight' => 800,
                                 'color'  => '#fff',
                                 'transform' => 'uppercase',
    
                                 ),
                'description' => array('family' => '"Comic Sans MS",Helvetica,sans-serif',
                                 'size'   => 14,
                                 'weight' => 600,
                                 'color'  => '#777',
                                 'transform' => 'uppercase'
                                 ),
                'header'      => array('family' => '"Comic Sans MS",Helvetica,sans-serif'),
                'content'     => array('family' => 'Verdana,Helvetica,sans-serif'),
            ),

Viewing 1 replies (of 1 total)
  • The topic ‘Modification of fonts’ is closed to new replies.