how do you change font size of text in CSS?
I have text - Click to see and enter your Comment and the text size is very tiny. I want to increase size.
[wpdiscuz-feedback id="blbahep88l" question="Your Thoughts?" opened="0"]Click to see and enter your Comment[/wpdiscuz-feedback]
Also what is CSS to change font color and size for Name and Email fields for both default label and input values? I want to make both white instead of black/grey.
Hi @hellosquishy,
I have text - Click to see and enter your Comment and the text size is very tiny. I want to increase size.
Please use this CSS code:
.wpd-inline-shortcode{
font-size: 16px;
}
Also what is CSS to change font color and size for Name and Email fields for both default label and input values? I want to make both white instead of black/grey.
The CSS codes below can be used for this purpose:
input.wpd-inline-name-input::placeholder { color: #fff; font-size: 15px ; } input.wpd-inline-name-input { color: #fff; font-size: 15px; }
Put the code in the "Custom CSS code" textarea, located in the Dashboard > wpDiscuz > Settings > Styles & Colors admin page.
Please change the red-marked values before using them.
Thank you. That worked and looks much better.
Another question - i noticed when you click View All Comments button for inline bubble - it takes you to Comments section where it filters comments by Inline Feedback. I want it to display All Comments by default instead of forcing user to click View All Comments button in comments section. Is there setting to do that?
also is there a FAQ on customizing UI with CSS or settings? That would help a lot. Thanks
I notice the comment status indicator bubble on left does nothing but just show total count of comments. Can we make it do something when user clicks on it like go to comments section?
the css fixed indicator bubble and works great. thank you
When user clicks bubble - it gives default text to give thoughts and comment. Is there a way to change default text? I looked in settings but didn't see it.