Hide Profile CommentsAuto Hide Profile CommentsThis code will
Automatically hide the profile comments from your profile.
The "Poster's picture", "Date of comment", and "name says:" will still appear.
Only the actual comment area will be hidden.
Only on
hovering your mouse over the comment will the comment appear.
- Code: Select all
.comment {height:90px !important;}
.comment:hover {height:100% !important;overflow-y:auto;}
If you have a larger, or a smaller sized comment picture than usual.
They you may need to adjust the height in the code accordingly.
.comment {height:
90px !important;}
(Adjust the pixel value in Red.)Hide Profile CommentsThis code will hide the profile comments from your profile.
The "Poster's picture", "Date of comment", and "name says:" will still appear.
Only the actual comment area will be hidden.
On hovering your mouse over the comment, the comment still will
Not appear.
- Code: Select all
.comment {height:90px !important;}
If you have a larger, or a smaller sized comment picture than usual.
They you may need to adjust the height in the code accordingly.
.comment {height:
90px !important;}
(Adjust the pixel value in Red.)Totally Hide Profile CommentsThis will hide the your profile comments entirely.
It will not hide the comments Header, Navbar, Input Text area or the footer.
It will only hide the body of the comments.
- Code: Select all
#comments .subsection{display:none;}