How can the gridrow content text be vertically centred to the icon?
How can the icon be larger?
How can a different set of icons be easily used?
Hey Tanja,
Thank you for the inquiry.
1.) Try to set the Styling > General Styling > IconBox Styling to the last option (Display icon above title).
2.) To increase the font size, go to the Styling > Font Sizes panel, then adjust the element settings accordingly.
3.) You can upload monocolored fonts from fontello or flaticon using the Iconfont Manager. Please check the documentation below for more info: https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Best regards,
Ismael
Thank you!
1 – I’m looking for vertically centred icon to content text. Changing to ‘display icon above title’ horizontally centres them instead.
2 – The Styling > Font Sizes panel has two font sizing options: title text and content text. There is no icon size option.
3 – Great info, thanks.
Additional note:
1 – On mobile, for example, the first and second line of content text run to the right of the icon, while the third line of content text runs underneath the icon. How can all lines be set to line up evenly to the right of the icon always?
Hi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field, it will make the icon larger and center vertically:
.iconbox_left .iconbox_content {
display: grid;
grid-template-columns: auto auto;
grid-template-rows: 1fr;
grid-auto-columns: auto 1fr;
gap: 0px 0px;
grid-auto-flow: column;
align-items: center;
justify-content: center;
}
.iconbox_left .iconbox_content .entry-content-header .iconbox_icon {
height: 60px;
width: 60px;
font-size: 40px;
top: 0;
left: 0;
align-content: center;
}
.iconbox_left .iconbox_content .entry-content-header {
justify-self: center;
}
.iconbox_left .iconbox_content .iconbox_content_container p {
margin-top: 0;
}
Best regards,
Mike
Thank you!
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.
Best regards,
Mike