I'm trying to add a custom font to the "London" template but I'm failing. The thread https://joomla51.com/forum/custom-font-ariana was my tutorial.
I want to add the font "AldoPC" to the dropdown for the fonts for H1-H4. It seems that the font is loaded (source code of the website) but I'm not able to select it from the drop down list even not for "body".
My "custom css":
@font-face {
font-family: 'AldoPC';
src: url('//http://www.sonnenstudio-perg.at/vorlage/templates/j51_london/fonts/AldoPC.eot');
src: url('//http://www.sonnenstudio-perg.at/vorlage/templates/j51_london/fonts/AldoPC.eot') format('embedded-opentype'), url('//http://www.sonnenstudio-perg.at/vorlage/templates/j51_london/fonts/AldoPC.woff') format('woff'), url('//http://www.sonnenstudio-perg.at/vorlage/templates/j51_london/fonts/AldoPC.woff2') format('woff2'), url('//http://www.sonnenstudio-perg.at/vorlage/templates/j51_london/fonts/AldoPC.ttf') format('truetype'), url('//http://www.sonnenstudio-perg.at/vorlage/templates/j51_london/fonts/AldoPC.svg') format('svg');
font-weight: normal;
font-style: normal;
}
body {
font-family: 'AldoPC';
}
Thank you!
Manfred