Site logo

Archived topic

Alignleft problem in Responsive Mode

1 reply · Started by Anonymous on February 11, 2016

Viewing posts 1–2 of 2

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/

This archived topic is closed to new replies.