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

    Hallo,

    I have installed the app tablepress and have one problem :
    It is not responsive on mobile.

    Can you give me a solution please

    thx

    • This topic was modified 8 years, 9 months ago by rafke.
    #574877

    Hi rafke!

    It looks like it’s responsive but there is just too much content in there to fit on a small mobile screen. Try adding this to your custom CSS.

    @media screen and (max-width: 767px) {
    th strong { font-size: 8px !important; }
    }
    

    Best regards,
    Elliott

    #575010

    Ok thx.

    It’s working in landscape but not in portret on mobile.
    Part of column is invisible and canit been seen even by swiping the screen on the Phone.
    Is it possible to disable this in portret mode or give a message to take the Phone in landscape mode. something else

    thx

    • This reply was modified 8 years, 9 months ago by rafke.
    #575501

    Hi!

    Add it inside a color section and then give the color section a custom ID and then use this CSS.

    #customID1 { display: block; }
    #customID2 { display: none; }
    @media screen and (max-width: 767px) {
    #customID1 { display: none; }
    #customID2 { display: block; }
    }

    You can add another color section beneath that one and give it an ID of “customID2” and add some text saying to view it on a desktop, etc etc.

    Cheers!
    Elliott

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