SETTING UP A SITE FOR A TABLET
-
Hello! Please tell me how I can adjust the display of the site using CSS for the tablet in the supine position and for the iPad Pro?
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
What is the fundamental difference between “Global Custom CSS” and “Custom CSS for desktop”? Which code should be added to “Global Custom CSS”, and which to “Custom CSS for desktop”?
Hello,
Global – styles would be applied to all the devices.
Desktop – styles would be applied to the Desktop view. On mobile / tablet would be applied the default styles or styles which are inserted in mobile /tablet
Best Regards
Thank! You helped solve my problem.
You are welcome! If you have any questions please feel free to contact us.
Best Regards
I have no more questions on this topic.
The topic ‘SETTING UP A SITE FOR A TABLET’ is closed to new replies.