Need help please to change font size only in mobile view of Block

Posted in: Newspaper
Post count: 24

How to: Need help please to change font size only in mobile view of Block 7 to look same like Block 12?

  • This topic was modified 9 years by libtetto.
Post count: 23312

Hello libtetto,

If you want to change the font size for mobile for Block 7, you should use a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.

The code is ->

@media (max-width: 767px){
.td_module_6 .entry-title {
font-size: 17px;
}
}

Thanks for the message!

Post count: 24

that worked like a charm Catalin! Thanks for your help!

Post count: 24

One more question please,

I would love to show Block 16 also with the same font size in mobile view..

So I added following code in custom css assuming the Block 16 will be module_mx17 but it doesnt work:


@media
(max-width: 767px){
.td_module_mx7 .entry-title {
font-size: 17px;
}
}

sure you can help easily but i tried to find out why it doesnt work and cant figure it out..

Thanks
Chriss

Post count: 24

OK, it worked with this code:


@media
(max-width: 767px){
.td_block_16 .td_module_mx7 .entry-title {
font-size: 17px;
}
}

Thanks!

Viewing 5 posts - 1 through 5 (of 5 total)
The forum ‘Newspaper’ is closed to new topics and replies.