in Joomla Templates by frisoer_kleinekorte (700 points)

Ausgangspunkt: Joomla!4 - Template mit Bootstrap 5 ohne Inhalt

Aufbau des Template: Menü mit Logo, oberhalb des Header | Header ohne Slideshow, nur mit statischem Bild | Modulposition für Slogan | Footer mit 3 Modulpositionen

Nach der Erstellung (Export als ZIP) musste ich nach wie vor große Mängel feststellen. Weder das Menü, noch der Header funktionieren im responsiven Design. Das Menü nimmt immer eine andere Breite ein, als der Content-Bereich. Erst nachdem ich einige Änderungen in der "template.css" vorgenommen habe, funktioniert nun auch das Menü.

@media (min-width: 768px)            /*  geaendert als zusatz wegen menue  */

{
  #cst_menu
{
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  #cst_menu
{
    max-width: 960px;           
  }
}
@media (min-width: 1200px) {
  #cst_menu
{
    max-width: 1140px;         
  }
}

@media (min-width: 1400px) {
  #cst_menu
{
    max-width: 1320px;           
  }
}

Warum lässt sich das Menü nicht im Header integrieren? Dann könnte man sich das alles sparen.

Abstände über "margin" und "padding" stimmen vorn und hinten nicht, obwohl diese korrekt im TT-Generator eingestellt und angezeigt werden. Teilweise werden auch Einträge doppelt, für die CSS erzeugt bzw. sind überflüssig, da diese bereits in "bootstrap 5" enthalten sind. Ich glaube ihr habt noch viel Nachholbedarf.


Starting point: Joomla!4 - Template with Bootstrap 5 without content.

Template structure: Menu with logo, above header | Header without slideshow, only with static image | Module position for slogan | Footer with 3 module positions

Images

After the creation (export as ZIP) I still had to find major flaws. Neither the menu, nor the header work in responsive design. The menu always takes a different width than the content area. Only after I made some changes in the "template.css", now the menu works.

CSS-Code

Why can't the menu be integrated in the header? Then you could save all this.

Spacing via "margin" and "padding" are not correct in front and behind, although they are correctly set and displayed in the TT generator. Partially, entries are also generated twice, for the CSS or are superfluous, because these are already included in "bootstrap 5". I think you still have a lot of catching up to do.

Please log in or register to answer this question.

Interested in localizing/Translating TemplateToaster Software in your native language in exchange of a Pro License ? Contact Us
...