Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #597363

    Hello…

    Can you tell me how to adjust my styles for ipad landscape…

    Thanks!
    Eric

    #597382

    Hey eparkerswe!

    Do you want to let us know what changes you need to do.
    You have to use media queries, but would require some more information, so we can help you further with that.

    Best regards,
    Basilis

    #598918

    Thank you for your answer Basilis.

    I need to make many changes including font size .. I need to know what the “media query” for ipad landscape. I tested with different “media query” but it does not work.

    /* ——————————————————-TABLET PORTRAIT ———————————————- */

    @media only screen and (min-width: 768px) and (max-width: 989px) {
    }

    /* ——————————————————-TABLET LANDSCAPE ———————————————- */

    @media only screen
    and (min-width: 768px)
    and (max-width: 1024px)
    and (orientation: landscape) {
    }

    #599095

    Hey!

    You can add following code to Quick CSS

    @media only screen and (min-width: 768px) and (max-width: 1024px) {
    body { font-size: 16px !important; }}

    to target landscape mode of tablets

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.