Help - Search - Members - Calendar
Full Version: Hiding comments but keeping comment box?
Forums > Resource Center > Support Center > Createblog Support
Jennifer
On my createblog profile, I want to create a div layout, with my comments hidden.. but I want people to still be able to comment me, is this possible?
I looked at the ID's but couldnt find anything relating.. please helpppp!
Mikeplyts
It's actually quite simple.

Just use this in your Header HTML:

CODE
<style>
#comments{display: none !important;}
</style>


And add the comment box code in your Footer HTML:

CODE
<form action="comment.php" method="POST">
<textarea name="comment"></textarea><br>
<input type="submit" class="button" value="Submit">
</form>


or you can use this code for the comment box except with a reset button. Footer HTML:

CODE
<form action="comment.php" method="POST">
<textarea name="comment"></textarea><br>
<input type="submit" class="button" value="Submit"> <input type="reset" class="button" value="Reset">
</form>
Jennifer
It worked, thanks! But now I'm wondering - is there a way to make it any smaller?
Mikeplyts
Yeah, you can just edit it's width and height in your CSS.

Header HTML:
CODE
<style>
textarea {
width:###px;
height:###px;
}
</style>

Replace the ### with your own values. _smile.gif
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.