Different style from Mobile and desktop

Posted in: Newsmag
Post count: 39

Hi
I would like to now if in Newsmag is possible to get different characters alignment from mobile and desktop.
I would like to get justified paragraphs in desktop and left alignment (as it is now) on mobile.
Thanks
Fabrizio

Post count: 23312

Hello Fabrizio Azzali,

You can do it only if you are using a bit of CSS code to do that. Try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-post-content p{
text-align:justify;
}
@media(max-width:767px){
.td-post-content p{
text-align:left;
}
}

Thanks for the message!

Post count: 39

It works!!!
perfect. 🙂
Thanks
Fabrizio

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