Archived topic
Post comment button
3 replies · Started by Manuela on March 5, 2021
Hi,
I've been trying to change the main color of the Post Comment button. But when I go to customize-color-butons, and change from there, it also modifies the colors of my other button. Which I don't want. So, right now my Post comment button is white on white background. Is there any way to modify the main and hover colors only for this button, without affecting the others?
Thank you,
You could try something like this:
input#submit {
color: #fff;
background-color: #000;
}
and for hover:
input#submit:hover {
color: #000;
background-color: #fff;
}
Let me know :)
Hey Ying,
It worked well.
Thank you,
You are welcome :)