Dear Kriesi,
Is it possible to create 3 different layouts?
I’m using this custom css:
@media only screen and (min-width: 768px) {
.desktop {
display:block !important;
}
.telephone {
display:none !important;
}
}
@media only screen and (max-width: 767px) {
.desktop{
display:none !important;
}
.telephone {
display:block !important;
}
}
.telephone {
overlay: 100% !important;
}
But I need also another layout for tablet. Is that possible?
So I want to use .tablet for responsive layout on tablet, because it needs to be different then dekstop and mobile.
Best regards