Resolution to switch to mobile
-
Hi there, how can I change at what point the theme switches to the mobile menu and header?
Damien
Hello,
The custom CSS of the Theme Settings has the option to insert CSS into Custom CSS for desktop // Custom CSS for tablet // Custom CSS for mobile landscape // Custom CSS for mobile
All the devices are of the standard breakpoint. If you want to add any specific, add the media query into Global.
@media screen and (max-width:1024px){
/*you style here*/
}
Best Regards