Home Forums WoodMart support forum SETTING UP A SITE FOR A TABLET

SETTING UP A SITE FOR A TABLET

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #206888

    Evgeny Sviridov
    Participant

    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?

    #206942

    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

    #206994

    Evgeny Sviridov
    Participant

    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”?

    #207015

    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

    #207790

    Evgeny Sviridov
    Participant

    Thank! You helped solve my problem.

    #207801

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

    #208015

    Evgeny Sviridov
    Participant

    I have no more questions on this topic.

Viewing 7 posts - 1 through 7 (of 7 total)

The topic ‘SETTING UP A SITE FOR A TABLET’ is closed to new replies.