Hi Miezz88,
To change color of buttons, you need to add custom CSS in module “Custom CSS”. Go to Booster settings > Emails & Mics. > Enable “Custom CSS”. Then go to its Settings and under “Custom CSS – Front end (Customers)” paste this:
button, html input[type="button"], input[type="submit"], .button, .button:visited {
color: #ffffff;
background-color: #0000FF;
}
button:hover, html input[type="button"]:hover,input[type="submit"]:hover, .button:hover, button:focus, html input[type="button"]:focus, input[type="submit"]:focus, .button:focus {
color: #ffffff;
background-color: #00FF00;
}
“color” attribute changes button text color (line 2 and 8)
“background-color” attribute changes button background color (line 3 and 9)
First “color” and “background-color” attributes allow customizing button style how it shows up when you load the site, second attributes allow customizing how button shows up when hovering mouse over it.
Color names have to be written in hex color codes. To customize other buttons, copy the code and replace input type “submit” with other button types.
[ Signature deleted ]