It appears to be 14px to me (checked using firebug)
font-size 14px
#wpcomm .wc-field-name input[type=”text”] 14px
wpdiscu…r=3.2.6 (line 30)
It may be that your site is caching the stylesheet, try ctrl/cmd + F5 and see if that helps.
I tried ctrl + F5, but nothing changed. I would like the text in the reply form to be as large as the text in the post.
The font size in the post is supposed to be 18px but it appears that your style is being overwritten by the wpdiscuz plugin’s stylesheet.
The following is a bit of a hack, but it should solve the problem. Look in your themes styles.css file, look for the following
input, select, textarea {
background-color: #fff;
border: 1px solid #ddd;
color: #333;
font-size: 1.8rem;
font-weight: 300;
padding: 16px;
width: 100%;
}
on the font-size attribute line, add !important prior to the semicolon
font-size: 1.8rem !important;
Hope that helps.
The text box in the comment form looks larger now, which is a definite improvement. Is there a way to make the rest of it larger as well (for example, the “Leave a Reply” & the “Notify of ….” parts?
Try this to get the ‘Notify of’ larger
#wpcomm .wpdiscuz-subscribe-form-intro {
font-size: 18px !important;
}
Unfortunately, getting the placeholder text (new follow-up comments) larger is going to be much more difficult. This is because the plugin’s CSS file also uses !important on the font-size.
Editing the plugin’s CSS directly is not really an option as it will get overwritten when you update.
It worked. Thank you very much.