I have 3 icons boxes in a row and I want to put numbers in the icons. How can I do that?
Hey elianab!
First off do this, http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/.
And then add a class of “iconbox1”, “iconbox2”, etc etc, to the iconbox elements in your page.
And then add this to your custom CSS.
.iconbox1 .iconbox_icon:before {
content: "1" !important;
}
.iconbox2 .iconbox_icon:before{
content: "2" !important;
}
.iconbox3 .iconbox_icon:before{
content: "3" !important;
}
Best regards,
Elliott