Guys how can i make the mobile version of the site turn on for example when width is1350px
Hey pddcoms,
Do you mean that you want the mobile menu to start showing at that pixel width? If not then please try to explain a bit further.
Best regards,
Rikard
Yes i mean that.
Hi,
Thanks for the clarification, please try this CSS:
@media only screen and (max-width: 1350px) {
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
Rikard. I did not read it correctly … I need the mobile version on the whole site to be included with width 1350. Is this possible?
Hi pddcoms,
Not very clear, could you please attach a mockup of what you’re trying to achieve?
Best regards,
Victoria
Victoria hi. I want the site to look like on the mobile version since 1350px width
Hi pddcoms,
I think that will be a lot of work.
You’ll probably need to check for all the css like grid.css, base.css, layout.css, etc and look for the media queries.
If it contains max-width replace it’s values for example (any value as long as it’s lesser than 1350px):
@media only screen and (max-width: 989px) {
to:
@media only screen and (max-width: 1350px) {
then if you find min-width (any value) for example:
@media only screen and (min-width: 990px){
replace it with:
@media only screen and (min-width: 1351px){
Hope this helps.
Best regards,
Nikko