Archived topic
How can I make text on table block responsive on mobile?
1 reply · Started by Trạng on March 19, 2022
Viewing posts 1–2 of 2
Hi there, how can I adjust text on table block is displayed in right line & responsive in mobile?
At current, it looks like this screenshot
Hi there,
try reducing the font size on small devices with this CSS:
@media(max-width: 500px) {
.comparison-table {
font-size: 14px;
}
}
This archived topic is closed to new replies.