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.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
Please Log in or Create an account to join the conversation.
<!-- 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 -->
Please Log in or Create an account to join the conversation.