Guten Abend, bei der MobileVersion meiner Website wird das Logo nicht angezeigt, wie kann ich das ändern ? Aktuell sieht man nur eine weisse Fläche.
Vielen Dank
Hey Alexandervc33,
This CSS in Quick CSS seems to be causing that to happen:
.home span.logo {
left: 50%;
-webkit-transform: translate(-50%,0);
-ms-transform: translate(-50%,0);
transform: translate(-50%,0);
}
If you only want that to apply to screen sizes above mobile, then please change it to this:
@media only screen and (min-width: 768px) {
.home span.logo {
left: 50%;
-webkit-transform: translate(-50%,0);
-ms-transform: translate(-50%,0);
transform: translate(-50%,0);
}
}
Best regards,
Rikard
Super, Danke!
Das Logo erscheint jetzt auf der Mobile Version. Allerdings ist das Logo ziemlich klein, kann man die größe des Logos in der Mobile Version ändern ?
Das Logo soll mittig ausgerichtet sein und von der größe gut sichtbar sein. Ist das machbar ?
Vielen Dank und Gruß
Alex
Hi Alex,
Please try this CSS as well:
@media only screen and (max-width: 767px) {
.responsive .logo img {
max-height: 160px;
}
}
Best regards,
Rikard