Ok, I've tried but I've got some problem:
1) I've added this on the slideshow.css
@font-face {
font-family: 'Adam';
src: url('../fonts/adam.eot');
src: url('../fonts/adam.eot') format('embedded-opentype'),
url('../fonts/adam.woff') format('woff'),
url('../fonts/adam.ttf') format('truetype'),
url('../fonts/adam.svg#BebasNeueRegular') format('svg');}
the url should be ok
2) On the same file:
.adam{font-family: 'Adam', sans-serif}
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
//23
static $opensans = 0;
if($fontname == "adam"){
if(!$opensans){ // not load yet
$doc->addStyleSheet('
fonts.googleapis.com/css?family=Adam');
$opensans = 1;
}return "adam";
}
At the bottom of the Google's font
But nothing happened : (
Have you got other suggests?
Thank you very much!!!!