Hello,
On mobile the fonts can only be changed through css so please use this code to change them:
for the big grid:
@media (max-width: 767px){
.td-big-grid-post.td-big-thumb .td-big-grid-meta .entry-title, .td-big-grid-post.td-medium-thumb .td-big-grid-meta .entry-title {
font-size: 16px;
}
}
for block 11:
@media (max-width: 767px){
.td_module_10 .entry-title {
font-size: 16px;
}
}
Thank you!
I’ve changed the 16px size but it’s still not showing. No big red x in my custom css box. In the phones css box, I see an ‘info’ icon saying “Don’t use adjoining classes.”
My custom css: https://snag.gy/DZFhuM.jpg
My phones box: https://snag.gy/KuXnOS.jpg
My mobile site: https://snag.gy/1F0dSw.jpg
Hi,
I think this is somewhat of a misunderstanding. If you would like to display a smaller font size on mobile for the article titles in the big grid, use something like this
– https://www.screencast.com/t/V8Y2HOsw6
Please remove the previous code related to the big grid (leave the one for the block), and enter this one in Theme panel->Advanced CSS in the phones section
.td_block_big_grid_12 .entry-title a {
font-size: 12px;
}
Please let us know if this is a solution in this matter.
Thanks
Hi,
Using the provided Advanced CSS sections, you could create code for each device or width size. For example like this a different font size is set for each instance
– https://www.screencast.com/t/Qx7UL1Rpd
You just need to modify the font size and use the same code.
Thanks
Hi,
You could do that. It would require the code to be more precise, like this for each module of the Big grid
– https://www.screencast.com/t/8j9CKkRHi
– https://www.screencast.com/t/tk1qPHObn
.td_block_big_grid_12 .td_module_mx5 .entry-title a {
font-size: 25px;
}
.td_block_big_grid_12 .td_module_mx11 .entry-title a {
font-size: 16px;
}
Use the values you want in the code for the font.
Thanks