I would like to keep the UI as clean as posible, for this I would like to remove the gravatar photo in the comments...
I would like to keep the UI as clean as posible, for this I would like to remove the gravatar photo in the comments section. how can this be done? trough CSS? how? thanks :-)
Alternative solution to consider: I've changed my gravatar to a note image.
ReplyDeleteYou can hide your gravatar in the comments with
ReplyDelete.commentTable tr td:first-of-type {
display: none;
}
And then if you want to distinguish the note text somehow, make it italic, for instance
.commentTable tr td {
font-style: italic;
}
Or the above mentioned Stuart's solution :)
thanks! :-)
ReplyDelete