Using Easystore 3.0 there is a bug on the rendering of the new buttons at the end of the email template.
They do render correctly on the preview, but not in the final email received.
I have set my button BG to red, Link color to red and Button Color to white, but the button appears red on red.
Looking at the CSS of the email sent I see:
.content a {
color: <Link>;
}
but futher below:
.cta-button-primary {
background-color: <Button BG>;
color: <Button Color>;
}
as far as .content a is more specific than .cta-button-primary I get red link color on top of my red BG button
I also noticed than when hovering, the button becomes red on blue, and I cannot change it as this is hardcoded in Easystore code, this should be an option in the default template:
.cta-button-primary:hover {
background-color: #bfdbfe;
}