Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #1581682
Mobile Text Wrapping
Closed

Comments

  •  1
    Carly started the conversation

    When I view this page on desktop, it looks fine.  However, on mobile, the text is not wrapping around the left- and right-aligned images properly.  How can I fix this so it looks good on all mobile devices?  (For this post, and in future case where I want text wrapped around an image.)


  •  2,699
    PenciDesign replied

    Hi,

    Please try add more this code to Customize > Custom CSS to fixed it:

    @media only screen and (max-width: 479px){
    a img.alignleft {
        margin: 5px 30px 22px 0;
        float: left;
    }
    a img.alignright {
     margin: 5px 0 22px 30px;
        float: right;
    }
    }

    Or use this code to make the text wrapping around drop to new lines on mobile:

    @media only screen and (max-width: 479px){
    a img.alignleft, a img.alignright, a img.alignnone {
        margin: 0 auto 30px auto;
        float: none;
        display: block;
    }
    }
    


    Best Regards,

    PenciDesign

  •  1
    Carly replied

    Thank you!