Remove "comments are closed" box
-
I would like to remove the “comments are closed” at the bottom of every post/page. (In Dutch it says: Reacties zijn gesloten).
How to go about that in the CSS? I am using The Morning After theme.
Thanks a lot.
The blog I need help with is: (visible only to logged in users)
-
Hi again! :)
You can use h3.nocomments.mast3 selector to ask the browser not to show it:
h3.nocomments.mast3 { display: none; }Hope it helps.
-
That helped. Partly.
The “comments are closed” text (“reacties zijn gesloten” in Dutch) is gone.
However, there is a large grey area with capital letters “REACTIES” (“COMMENTS”) just above it… How to remove that one??
Thanks again, very much appreciated.!
-
Ok, let’s go for the whole! :)
You can use this
#comments h2.post_comm { display: none; }Or if you haven’t got any comment and you would like to remove the complete section, this other css magic:
#comments { display: none; }If you use this second one, you don’t need the first one or even the previous h3.nocomments.mast3 statement, because these two would be included in #comments selector.
Hope this helps.
-
Brilliant, this section is completely invisible now. Thanks very much for the helpful explanation too.
-
- The topic ‘Remove "comments are closed" box’ is closed to new replies.