Dear Support,
I was wondering what the CSS would be to change the background + font color of a) the buttons and b) the icons for icon list.
cheers Fudge
Hi Fudge!
Thank you for using the theme!
You can select your own color when you insert the button shortcodes. Edit the option then look for the Button Color, scroll below, choose the Custom Color. You can change the icon list icon color with this:
span.iconlist-char {
color: red;
}
And the icon list background using this:
.main_color .avia-icon-list .iconlist_icon {
background-color: blue;
}
Best regards,
Ismael
Hey Ismael,
Thanks for your reply. Your CSS didn’t quite do it but gave pointed me in the right direction. I used the below CSS to change iconlist:
.avia_transform .avia-icon-list .avia_start_animation .iconlist_icon {
background-color: #719430;
color:#FFFFFF;
}
cheers Fudge