Hi there,
1. checked with my phone but I don’t see that white space, what version of iPhone are you using? What page is that one? The second screenshot doesn’t seem to have the white space.
2. if you want to customize the font size you need to add a custom CSS, for example:
@media screen and (max-width: 480px) {
.final-tiles-gallery .tile .caption-block .text-wrapper span.title { font-size: 12px; }
.final-tiles-gallery .tile .caption-block .text-wrapper span.description { font-size: 12px; }
}
adjust the font-size value based on your needs.
Thank you. That seems to change the title text size, but the caption text isn’t resizing.
sorry, it’s:
@media screen and (max-width: 480px) {
.final-tiles-gallery .tile .caption-block .text-wrapper span.title { font-size: 12px; }
.final-tiles-gallery .tile .caption-block .text-wrapper span.text { font-size: 12px; }
}
That didn’t seem to change anything either. I tried adjusting the sizes and they stayed the same.
https://ibb.co/iOLTUm
sorry… that should be the right one 😉
@media screen and (max-width: 480px) {
.final-tiles-gallery .tile .caption-block .text-wrapper span.title { font-size: 12px !important; }
.final-tiles-gallery .tile .caption-block .text-wrapper span.text { font-size: 12px !important; }
}