Alignleft problem in Responsive Mode

Home Forums Support Alignleft problem in Responsive Mode

Home Forums Support Alignleft problem in Responsive Mode

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #172029
    Arda

    Hello;

    Align left function is not working properly on generatepress theme.

    Normally text and image should be looking like that > http://i.hizliresim.com/bJ3V7j.png

    But in theme it looks like that > http://i.hizliresim.com/7Mza3l.png

    How can i make it looking like in the wp-admin panel?

    Thank you!

    #172088
    Tom
    Lead Developer
    Lead Developer

    Typically there’s not enough room for images to align left or right on mobile, so we move it above – although it should be centered.

    You can reverse that functionality with this CSS:

    @media (max-width: 768px) {
        .alignleft {
            float: left;
        }
        .alignright {
            float: right;
        }
    }

    Adding CSS: https://generatepress.com/knowledgebase/adding-css/

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.