[ad_1]
Hi,
thanks for your post, and sorry for the trouble.
Both of this is possible, e.g. with a CSS media query. For that, you can add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:
For reducing the font size of table 123 to 10px, on screens smaller than 768px:
@media screen and (max-width: 768px) {
.tablepress-id-123 {
font-size: 10px;
}
}For hiding the first column of table 123:
@media screen and (max-width: 768px) {
.tablepress-id-123 .column-1 {
display: none;
}
}Regards,
Tobias
Thread Starter
DannyG
(@dannygarcia1971)
Great! Thank you very much!! Really appreciate your help.
