I recently added a floating class where the icon sits on top of the column box.
https://kriesi.at/support/topic/custom-image-float-style-css/
It looks great on desktop. However on mobile, they were overlapping each other.
How can I increase vertical padding to avoid this issue on mobile?
Hey gerardbao,
Thank you for using Enfold.
Replace the css code with the following:
@media only screen and (min-width: 768px) {
/* Add your Desktop Styles here */
.avia_textblock.icon-offset {
margin-top: -86px;
}
}
Best regards,
Ismael
Awesome. Worked like a charm. Thanks!