Hi i have gone through the forum and tried the suggested code to style an icon box but cannot seem to target an icon box by itself
Currently i can change the background colour with this code
.main_color.iconbox_top .iconbox_content {
background: rgba(250,113,0,0.66) !important;
}
Bu this changes all the icon boxes to the same colour. How would i target individual boxes?
I tried using the avia-builder-el-5 but nothing changed
Hi McEwans!
You can turn on custom CSS field for ALB elements ( http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ ) and give your iconbox element a custom CSS class then add following code to Quick CSS
.your-custom-class .iconbox_content {
background: rgba(250,113,0,0.66) !important;
}
Cheers!
Yigit
Thanks Yigit!!