Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #763195

    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?

    #763252

    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

    #763258

    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;
    }}
    #763262

    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

    #763263

    Thank you a lot!

    #763393

    Hi,
    Your welcome and Thank you for using Enfold.

    Best regards,
    Mike

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Left text alignment signle post without sidebar on mobile only’ is closed to new replies.