Tagged: image alignment
Hi,
I would like to align the three image buttons(Follow Us on Instagram, Find out more and Sign Up Today) into one single column. Currently it’s in align as one row – stacking on top of each other.
Any help would be much appreciated :)
Hey fairusd,
use this code inside Quick CSS field:
@media only screen and (max-width: 767px) {
.flex_column.av_one_third.flex_column_div.av-zero-column-padding {
width: 33% !important;
}}
Best regards,
Andy
Hi Andy,
Thank you for great help! Yes it looks great now!
One more question, the buttons now looked rather cramp side by side.
Would it be possible to have some padding in between the buttons?
Thank you and appreciate the help!
Hi,
Please try this instead:
@media only screen and (max-width: 767px) {
.flex_column.av_one_third.flex_column_div.av-zero-column-padding {
width: 30% !important;
padding: 0 10px 0 0 !important;
}
}
You might have to play around with the values a bit to get it looking right.
Best regards,
Rikard
Thanks Rikard.
Worked like a charm!!