Verwendung: Reihenfolge der Spalten bei Mobilanwendungen
Produkt: Tao Contao
Contao-Version: 4.9
Browser und Browserversionen: alle
Die Responsiveness ist dergestalt voreingestellt, dass zunächst die Hauptspalte, dann die linke Spalte und schließlich die rechte Spalte auf Smartphones dargestellt wird - lässt sich diese Reihenfolge ändern (rechts vor links)?
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
Support Staff 1 Posted by RockSolid Theme... on 04 May, 2021 11:47 AM
Vielen Dank für Ihre Frage.
Fügen Sie dafür bitte folgenden CSS-Code in die Datei files/tao/css/custom.css ein:
2 Posted by Bernator on 23 May, 2023 11:26 AM
Bei mir habe ich einen Inhalt im Wechsel. Links Bild, rechts Text. In der nächsten Spalte links Text, rechts Text.
Kann ich das so hinbekommen, dass es mobil immer gleich ist, z. B. oben Bild, darunter Text?
3 Posted by Bernator on 23 May, 2023 11:54 AM
@media screen and (max-width: 599px) {
.rs-columns .fl-right {
display: flex;
flex-direction: column;
}
.rs-column.-small-first-row {
order: 2;
}
}