Hi
I am using single blog post without sidebar and all looks great on desktop. On mobile not.
How can I change text alignment for left only on mobile?
Hey Krzysztof,
To change your text alignment from justify to left on mobile devices (max 425px) Try this code in the General Styling > Quick CSS field:
@media only screen and (max-width: 426px){
#top .fullsize .template-blog .post .entry-content-wrapper {
text-align: left !important;
}}
Best regards,
Mike
Hi
Thank you, for quick answer, works great.
Last question: if I want to increase font size on mobile only should I use as follow code?
@media only screen and (max-width: 426px){
#top .fullsize .template-blog .post .entry-content-wrapper {
text-align: left !important;
font-size: 18px;
}}
Hi,
Try this code in the General Styling > Quick CSS field:
@media only screen and (max-width: 426px){
#top .fullsize .template-blog .post .entry-content-wrapper {
text-align: left !important;
font-size: 18px !important;
}}
Best regards,
Mike
Thank you a lot!