Hallo,
ich möchte, das bei Tablets früher auf die einspaltige Ansicht gewechselt wird also z. B. ab einer Breite von 860px.
Wie erreiche ich das mit @media?
Hey Roland,
You need a speicific media query for which thing?
Best regards,
Basilis
Hello, thanks for the answer.
I would like to change the entire website to the mobile view from a maximum resolution of 1200px.
Hi,
Thanks for the clarification. Please try the following in Quick CSS under Enfold->General Styling:
@media only screen and (max-width: 1200px) {
nav.main_menu {
display: block !important;
}
#avia-menu .menu-item {
display: none;
}
.av-burger-menu-main.menu-item-avia-special {
display: block;
}
}
Best regards,
Rikard
Hello, thanks, but that does not work.
Hi nomore007,
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
Victoria
Hier der Link
Hi nomore007,
Best regards,
Victoria
hello, the menu is not the problem. I would like that on trays in the landscape format on the same view is switched as in the portrait format.
Hi,
Thanks for the update.
Are you referring to the grid row cells? This css code should force the grid row cells to adjust to a single column when the screen width is equal or less than 1200px.
@media only screen and (max-width: 1200px) {
.responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell {
margin: 0;
margin-bottom: 20px;
width: 100%;
display: block;
}
}
Best regards,
Ismael
Hallo, auch das funktioiert leider nicht. :-(