remove hardcoded comment instructions
- The topic ‘remove hardcoded comment instructions’ is closed to new replies.
Need help? Check out our Support site, then
I’d like to remove the ‘Please keep your comments polite and on-topic.’ which is hardcoded into comment forms in this theme.
How do I do it?
The blog I need help with is: (visible only to logged in users)
Hi there!
Using a tool such as Firebug, you’ll want to find the specific CSS selector for this comment message:
form.card hgroup p
Then, apply the display: none CSS property, like so:
form.card hgroup p {
display: none;
}
I hope this helps :)
Perfect! Thank you!
You’re welcome! I’m glad to help :)