3) I would like to add the font into the drop down menu inside the backend. (where I can choose the font to use)
So I've added this line into the file helper.php
You should add this line into the file fields/slideoption.php, look for $fontOptions param and add:
$fontOptions = array(
JHTML::_('select.option', 'none', 'Default' ),
JHTML::_('select.option', 'adam', 'Adam' ),
...
);
File helper.php should be:
//23
if($fontname == "adam"){
return "adam";
}
joomfreak