Archived topic
Alignleft problem in Responsive Mode
1 reply · Started by Anonymous on February 11, 2016
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!
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/
