Archived topic
Right image aging (text to the left of the image)
8 replies · Started by David on July 29, 2017
Hello,
Beaver Builder user, I want to place a picture to the left of a text in a column. With GeneratePress, on iPad or iPhone, the image is displayed at the top of the text (on large screen, no worries). How to fix the problem?
Note:
1- I use only pages and not articles.
2- With the Beaver Builder theme, no worries, it works well.
Thanks.
Hi there,
Are you able to provide a link to your site? Thanks!
Which image are you talking about?
My photo (my face) and INAD image.
Hmm try this CSS:
@media (max-width: 768px) {
.alignleft {
float: left;
}
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Perfect ! But, margin/padding is bad for my face (it's OK for INAD image)... :(
With add
margin: 5px 10px 0;
It's OK.
Finaly
@media (max-width: 768px) {
.alignleft {
float: left;
margin: 5px 10px 0;
}
}
Thanks Leo ! Thanks !
No problem! Thanks for sharing the solution :)