Tagged: boxed layout, enfold, stretched layout
Greetings,
Would you happen to have a quick CSS fix to accomplish the followinig:
Have the site (Enfold theme) use a “Boxed Layout” for regular desktop viewing, but also have it use the “Stretched Layout” for mobile versions such as tablets and smart phones
Thank you for your support.
Hi,
This will do it:
@media only screen and (max-width: 767px) {
body{
margin: 0 !important;
width: 100% !important;
}
}
Regards,
Josue