I hide comments sitewide… no comment boxes appear anywhere. If this is what you want here is the code I used.
You can put it in the css field found here: dashboard>appearance>customize>then click CSS and put this in the white box:
I found this out by using Firebug, an add-on for Firefox browser. Firebug allows you to click on a Div on a page and find out the CSS that it is currently using. Using firebug, I realized that the comment section was in a div with an id of “respond” and that its css code was all listed in this css:
.entry-comments, #respond {
(here was a list of css properties)
}
so then I knew I had to copy that code into my custom css code, and change (or in this case, just add the line:
display: none !important;
in between the brackets…
you leave the theme’s css stylesheet alone, and only input the custom code.