The easiest way is to put this code below into Appearance > Edit CSS (this option is provided by Jetpack that you’ve already installed, but any Custom CSS plugin will do).
.comments-area:before {
content: "My comments policy text";
font-size: 12px; line-height: 1.2;
display: block; margin-bottom: 12px;
}
The other way is to create a child theme for it.
http://codex.ww.wp.xz.cn/Child_Themes
and then override/overwrite comments.php
http://themes.trac.ww.wp.xz.cn/browser/ilisa/1.1.1/comments.php
putting your text into line#12
<p class="comments-policy">My comments policy text</p>
the class is just in case you need to style it.
Great, thanks so much for that I’ll give it a go!
(@atommeetsdream)
12 years, 6 months ago
Hi! I’ve tried doing a search before I posted this and all i get is a page with ‘loading’ written on it every time (and nothing else appears…) so apologies in advance if this has been answered.
I just want to add a simple bit of normal sized text above the box you write comments in (as a kind of comments policy) and I cant seem to find the right place to add this. Any advice about how to do this would also be appreciated, as well as the correct location!
my website is http://atommeetsdream.com in case that helps 🙂
Thanks!
CC