Example #1
0
}
$logo_font_style = '';
if ($this->params->get('logo_font_style')) {
    $logo_font_style = 'font-style: ' . $this->params->get('logo_font_style') . ';';
}
$logo_font_weight = '';
if ($this->params->get('logo_font_weight')) {
    $logo_font_weight = 'font-weight: ' . $this->params->get('logo_font_weight') . ';';
}
$logo_font_color = '';
if ($this->params->get('logo_font_color')) {
    $logo_font_color = 'color: #' . $this->params->get('logo_font_color') . ';';
}
$slogan_font_family = $this->params->get('slogan_font_family');
$slogan_font_arr = array('fontlink' => false, 'fontfamily' => false);
$slogan_font_arr = fontChooser($slogan_font_family);
$slogan_font_family = $slogan_font_arr['fontfamily'];
$slogan_font_size = '';
if ($this->params->get('slogan_font_size')) {
    $slogan_font_size = 'font-size: ' . $this->params->get('slogan_font_size') . 'px;';
}
$slogan_font_style = '';
if ($this->params->get('slogan_font_style')) {
    $slogan_font_style = 'font-style: ' . $this->params->get('slogan_font_style') . ';';
}
$slogan_font_weight = '';
if ($this->params->get('slogan_font_weight')) {
    $slogan_font_weight = 'font-weight: ' . $this->params->get('slogan_font_weight') . ';';
}
$slogan_font_color = '';
if ($this->params->get('slogan_font_color')) {
Example #2
0
/*
/**************************************************************************************/
include_once 'fonts.php';
$body_font_family = '';
if ($this->params->get('body_font_family')) {
    $body_font_family = $this->params->get('body_font_family');
}
$bodyfont_arr = array('fontlink' => false, 'fontfamily' => false);
$bodyfont_arr = fontChooser($body_font_family);
$body_font_family = $bodyfont_arr['fontfamily'];
$heading_font_family = '';
if ($this->params->get('heading_font_family')) {
    $heading_font_family = $this->params->get('heading_font_family');
}
$hfont_arr = array('fontlink' => false, 'fontfamily' => false);
$hfont_arr = fontChooser($heading_font_family);
$heading_font_family = $hfont_arr['fontfamily'];
$body_font_size = '';
if ($this->params->get('body_font_size')) {
    $body_font_size = 'font-size: ' . $this->params->get('body_font_size') . ';';
}
$h1_font_size = '';
if ($this->params->get('h1_font_size')) {
    $h1_font_size = 'font-size: ' . $this->params->get('h1_font_size') . ';';
}
$h2_font_size = '';
if ($this->params->get('h2_font_size')) {
    $h2_font_size = 'font-size: ' . $this->params->get('h2_font_size') . ';';
}
$h3_font_size = '';
if ($this->params->get('h3_font_size')) {