I have a color section that contains two 1/2 blocks. Inside the left 1/2 block, I have a text box and an image box. Both are aligned left to match the design. I’ve figured out how to make the text in the text box align center in responsive mode, but how would I make the image align center in responsive mode?
Hey dburton77!
Could you provide us with a link to the site in question so that we can take a closer look please?
Best regards,
Rikard
Hi!
Please try the following in Quick CSS under Enfold–>General Styling:
@media only screen and (max-width: 767px) {
.page-id-1188 .avia-builder-el-2 .avia-image-container-inner img.avia_image {
display: table !important;
margin: 0 auto !important;
}
}
Best regards,
Rikard
Works like a charm! Thanks!