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