I'm trying to delete or not display the "Leave a Comment" & all other comment-related actions in the CSS of the Chunk Theme, & I feel I am missing something--is there any way I could have some insight on how to take out these pieces in the blog CSS?
thanks!
Blog url: http://advisorsherpa.wordpress.com/
Need help? Check out our Support site, then
Deleting Comments in CSS Chunk Theme
-
-
In your CSS tab, you currently have this:
display:none; #comments { clear:both; text-align:left; width:600px; margin:20px 0; padding:15px; }It's almost correct, but the display:none is outside of the section, and can actually replace everything else in there. Try this instead:
#comments { display:none; } -
I tried that as you mentioned, & it is still showing up on the main site... not sure if I should do the same thing to all tabs that have #comments { .. or just that tab? any thoughts? thanks!
-
It looks like you have multiple occurrences of sections where display:none is similarly outside, which may be breaking your stylesheet a bit.
Try moving those all inside their designated sections (replacing the content within as above).
-
Halleluiah, it worked!
thanks for your help, you have no idea how long I've spent figuring this out. -
You're welcome!
Topic Closed
This topic has been closed to new replies.