Hello! "They" told me that I have to define before some "rules" like:
@font-face {
font-family: "MyCustomFont";
src: url("/DJB_Almost_Perfect.eot");
}
@font-face {
font-family: "MyCustomFont";
src: url("/DJB_Almost_Perfect.ttf");
}
and then assign it to the specific element:
.ctrl-emod-details {
font-family: MyCustomFont;
}
I am creating a custom css file, to assign rules for the specified element ... but I don't know how and where I have to define the rules! Maybe in the same custom css file?
Thanks!