Archived topic
Post Comment Styling
5 replies · Started by Michelle on January 12, 2021
I want my "Post Comments" button to match my "Read More" button. All I need to add is a border.
border: #d6d6d6 solid 2px;
padding: 8px 15px;
font-size: .8em;
Hi,
Can you link us to the site you're working on?
You can use the private information text field to provide the site details. Thank you. :)
My login credentials are below
You can try adding this CSS:
div#comments p.form-submit input[type="submit"] {
border: 1px solid transparent;
background: #f7f7f7;
border-color: #d6d6d6;
color: #b80000;
}
div#comments p.form-submit input[type="submit"]:hover {
border: 1px solid #222222;
background: #222222;
color: #FFFFFF;
}
Looks nice, thank you.
Looks nice, thank you.
No problem. Glad it works for you. :D