Hello,
How can I change the font size of the Author's name? I would like to change it to 14px. When I try to do this in CSS, the results do not change.
#wpcomm .wc-comment-author{font-size:14px; width:75%; float:left; white-space:normal; text-align:left; padding:7px 0px 2px 10px; }
Thank you!
Hi starlanding,
Please use the following CSS code, put it in Dashboard > Comments > Settings > Styling admin page put this code in "Custom CSS Code" textarea.Â
#wpcomm .wc-comment-label span {
font-size: 14px !important;
}
Don't forget to delete all caches do CTRL + F5 on frontend.
Hello,
I tried this but still doesn't work for me.
#wpcomm .wc-comment-label span {
font-size: 14px !important;
}
I forgot something ?
Please, look at the image.
Thanks for your help.
Hi @billmoo,
Please use the following CSS code:
#wpcomm .wc-comment-header .wc-comment-author > a{
font-size: 15px !important;
}
Don't forget to change the red marked color codes before using.
Thank you Arina, it works perfectly !