[SOLVED] RockSprocket - mit PopUp
joomlaplates wrote: Dann müssen sie die theme.css laden.
Öffnen sie die Datei
..\templates\ihr template\component.php
und fügen sie folgenden Code ein
JHtml::_('stylesheet', 'theme.css', array('version' => 'auto', 'relative' => true));
... gemacht. Schriftart bleibt die alte. Am Layout hat sich etwas geändert. Ich lade die Schriftart "Abel" aus dem Template über die Zuordnung im Ordner "CSS".
Please Log in or Create an account to join the conversation.
/* Schriftart laden [Website] */
@font-face {
font-family: "Abel";
src: url('../styles/Offenburger FV (Hauptseite)/css/Abel-Regular.ttf');
}
/* Schriftart zuordnen */
html h1, h3 {
font-family: 'Abel', Helvetica, Arial, sans-serif !important;
}
Ohne Erfolg
Please Log in or Create an account to join the conversation.
Die theme.css wird aus dem Ordner "css" geladen. Von dort kommt die falsche Schriftarten-Zuordnung.
Ich habe von der theme.css ein Override im Styles-Order vom Template. Die dortige theme.css hat die richtige Schriftart (wird aber nicht geladen). Im Ordner "css" befindet sich noch die "custom.css" Dort habe ich die Schriftart "Abel" als Laden vom eigenen Server hinterlegt.
Wie lade ich diesen Files - soll ich die Schriftart in der Orginal-themes.css ändern? Sie sprechen doch immer, man soll keine Orginal-Files ändern! Oder ist die Schriftart im Customizer änderbar? Dort habe ich gesucht aber nichts gefunden...
Danke...
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
<!-- Inline CSS [RockSprocket PopUp-Fenster] -->
<style>
@import url(' fonts.googleapis.com/css?family=Abel&display=swap ');
body {
font-family: "Abel";
font-size: 14px;
line-height: 20px;
color: #333;
}
html, h1, h3 {
font-family: 'Abel', Helvetica, Arial, sans-serif !important;
}
</style>
<!-- End Inline CSS Code -->
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.