[Resolved] ipad tablet padding

Home Forums Support [Resolved] ipad tablet padding

Home Forums Support ipad tablet padding

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #1261684
    Konstantinos

    Hallo i have some matters with the padding on ipad tablet device.I have three widgets in the footer and the middle one is pushed to another row,and also in a container with 2 images there is no space between them.
    Thanks a lot for help.keep up the good work

    #1262129
    Tom
    Lead Developer
    Lead Developer

    Hi there,

    Try adding this CSS:

    @media (max-width: 1024px) and (min-width: 768px) {
        .footer-widgets .inside-footer-widgets > div {
            width: 33.333%;
            clear: none;
        }
    }
    #1262894
    Konstantinos

    Hallo Tom,thanks for the quick answer and for the great job you and your team are doing all this time,i insert the code but didnt fix the landscape tablet view,still the middle footer widget is in a new row.

    #1263000
    David
    Staff
    Customer Support

    Hi there,

    where did you add the CSS ? I cannot see it on your site ?

    #1263072
    Konstantinos

    Hallo David in the customizer additional css..all my css there

    #1263394
    David
    Staff
    Customer Support

    Can you try moving the CSS Tom provided to the very top of Additional CSS

    #1263422
    Konstantinos

    yes David thanks when i moved it on top it worked..the landscade mode of ipad is just fine,the portrait mode has a left alligment one down another

    #1263809
    Konstantinos

    For the portrait mode for tablet this did the job:
    /* Portrait */

    @media
    only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    .footer-widgets .inside-footer-widgets > div {
    display: inline-block;
    vertical-align: top;
    width: 33%;
    height: auto;
    padding: 50px ;
    }
    }
    Thanks a lot for the help!

    #1264427
    David
    Staff
    Customer Support

    Glad to hear that

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