Tagged: icon box
How do I align the icon box to the middle – https://expertgeneactivation.com/best-side-hustle-masterclass
Hey yifatcohen,
Thank you for the inquiry.
Would you mind providing a screenshot of the section that you’d like to modify? You can use imgur, savvyify or dropbox for the screenshot. Have you tried using Columns to align the elements?
Best regards,
Ismael
can you try this in your quick css:
#top .iconbox {
display: flex;
flex-flow: row nowrap;
justify-content: flex-start;
align-items: center;
}
#top .iconbox_left_content .iconbox_icon,
#top .iconbox_right_content .iconbox_icon {
min-width: 74px;
margin-bottom: 0
}
and to center the flex_columns itself :
#av-layout-grid-2 .flex_cell .flex_column {
display: flex;
flex-flow: row nowrap;
justify-content: center;
}
but as always all rules here do work on all elements that fit- better is to work more specific by a custom class set by you f.e. on that grid-row element.