Dear Support,
I would like to change the button color for each Post Comment button to my favorite color, but I don’t know where can change it. I tried to change the theme color on the theme panel. It seems not related to the button.
Thanks.
Hi,
You can use a custom css for this -> https://www.screencast.com/t/eTWBAdZLn7Ai
.comments input[type=submit]{
background-color: red;
}
.comments input[type=submit]:hover {
background-color: green;
}
Set the code in Theme panel>Custom code>Custom css
If you are using single post template from tagDiv Cloud Library you can edit the template and set the color on button -> https://www.screencast.com/t/bOfXk3Vq
Thank you!
Dear Support,
How about the text colour. I would like to change it too. Thanks.
Hi,
All you need to do is to add the color element like this -> https://www.screencast.com/t/agFjQW0LwSK
.comments input[type=submit]{
background-color: red;
color: black;
}
.comments input[type=submit]:hover {
background-color: green;
}
Thank you!
Dear support,
may I also change the amp page
the post comments button colour and text colour?
thanks
Hi,
For amp version you can try this custom css
-> https://www.screencast.com/t/AAKVZ0xTbPm
You need to set the code in Theme panel>Mobile theme>Custom code> Css
-> https://www.screencast.com/t/jRnAmBMWPbr
Thank you!