Notifications
Clear all
How-To and Troubleshooting
6
Posts
2
Users
0
Reactions
1,577
Views
Topic starter
05/06/2018 6:01 am
How can I remove the light gray border beneath the commenter's name? And below the Reply?
Thanks!
05/06/2018 12:33 pm
Hi starlanding,
You need to use the following CSS code. Navigate to Dashboard > Comments > Settings > Styling admin page put this code in "Custom CSS Code" textarea. Delete all caches do CTRL + F5 on frontend.
#wpcomm .wc-reply .wc-comment-header {
border-bottom: none;
}
#wpcomm .wc-comment-header {
border-bottom: none;
}
#wpcomm .wc-sticky-comment.wc-comment .wc-comment-header {
border-bottom: none;
}
#wpcomm .wc-reply .wc-comment-header {
border-bottom: none;
}
Topic starter
06/06/2018 2:48 am
Thank you very much!
Topic starter
07/06/2018 2:17 am
This works for everything, except the Reply button. I am still seeing a bottom border... Any idea on how to get rid of this? Thank you!
07/06/2018 1:39 pm
Hi starlanding,
You need to use the following CSS code:
#wpcomm .wc-cta-button, #wpcomm .wc-cta-button-x{
border-bottom: none;
}
Topic starter
07/06/2018 9:30 pm
Thank you very much!