Notifications
Clear all
Topic starter
13/04/2019 11:01 pm
Hi, I was able to increase the font size of all comments and replies with this code:
#wpcomm * {
font-size: 18px !important;
}
However, I want the line spacing to be the same. Can you give me the CSS to do this?
Thanks
Mike
15/04/2019 12:19 pm
Hi @mikequinn,
You should use the following CSS code for this purpose. Don't forget to change the red marked code before using.
#wpcomm .wc-reply .wc-comment-right .wc-comment-text, #wpcomm .wc-reply .wc-comment-right .wc-comment-text * {
line-height: 22px;
}
Topic starter
17/04/2019 5:36 am
Thanks!