j51_kodaline/inc/style.php
A semicolon is missing at the end of the line in line 7.
body {
color: '.$this->params->get('body_font_color').';
font-family:'.str_replace("+"," ",$body_fontstyle).'
font-size: '.$this->params->get('body_fontsize').'px;
}
Fix: Line 5-9 should be changed in
body {
color: '.$this->params->get('body_font_color').';
font-family:'.str_replace("+"," ",$body_fontstyle).';
font-size: '.$this->params->get('body_fontsize').';
}
After that, the webfonts for the "body" works fine ;-)
Regards
Obi