Background Image wird nicht skaliert
www.brillenwichmann.de
Sorry, noch eine Farge. Die hatte ich schon einmal gestellt und Ihr Tipp hat damals nicht geholfen. Das schob ich darauf, dass ich selber Background Sections hinzugefügt hatte. Habe ich nun aber nicht, ich habe bisher keine css Dateien geändert.
Sowohl auf der Smartphone als auch auf der Tablett Ansicht wird das Bild, das in der Background Section Bottom D liegt nicht skaliert.
Ich habe bereits in der Custim.css einen Code eingefügt:
@media (max-width: 768px) {
#bottom-a,
#bottom-b,
#bottom-c,
#bottom-d,
#top-a,
#top-b,
#top-c,
#top-d
}
Hilft aber nicht!
Eine Idee?
Beste Grüße
Petra
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Replied by joomlaplates on topic Background Image wird nicht skaliert
Posted 7 years 5 months ago #17505Probieren sie mal folgenden Code:
@media (max-width: 768px) {
#bottom-a,
#bottom-b,
#bottom-c,
#bottom-d,
#top-a,
#top-b,
#top-c,
#top-d
background-attachment: scroll;
}
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.
Danke für die schnelle Hilfe. Leider funktiioniert es aber nicht. Haben Sie noch eine Idee?
Der Custom css Code sieht jetzt so aus:
@media (max-width: 768px) {
#bottom-a,
#bottom-b,
#bottom-c,
#bottom-d,
#top-a,
#top-b,
#top-c,
#top-d
background-attachment: scroll;
}
.uk-navbar-center {
max-width: 100%;
}
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Replied by joomlaplates on topic Background Image wird nicht skaliert
Posted 7 years 5 months ago #17510Hier der richtige Code:
@media (max-width: 768px) {
#bottom-a,
#bottom-b,
#bottom-c,
#bottom-d,
#top-a,
#top-b,
#top-c,
#top-d
background-attachment: scroll;
}
}
.uk-navbar-center {
max-width: 100%;
}
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.
Der Code sieht nun so aus:
@media (max-width: 768px) {
#bottom-a,
#bottom-b,
#bottom-c,
#bottom-d,
#top-a,
#top-b,
#top-c,
#top-d{
background-attachment: scroll;
}
}
.uk-navbar-center {
max-width: 100%;
}
Ich verstehe das nicht. Sie?
Please Log in or Create an account to join the conversation.
- joomlaplates
- Offline
- Moderator
- Posts: 8807
- Thank you received: 1732
Replied by joomlaplates on topic Background Image wird nicht skaliert
Posted 7 years 5 months ago #17513Nun sollte der Code gehen:
@media (max-width: 768px) {
#bottom-a, #bottom-b, #bottom-c, #bottom-d, #top-a, #top-b, #top-c, #top-d {
background-attachment: scroll !important;
}
}
.uk-navbar-center {
max-width: 100%;
}
www.joomlaplates.de/dokumentation.html
Please Log in or Create an account to join the conversation.