Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
where is this code hiding?
I'm trying to reduce the pading on the user icon on the forums because it keeps showing over some posts but i can't seem to track down where this code is hiding?
.ProfileTitle.WithIcon .ProfileIcon { width: 50px; height: 50px; }
#AccountProfile .Picture { width: 280px; height: 200px; }
#Comments .CommentHeader { line-height: 50px; }
#Comments .CommentHeader li div.CommentIcon { padding: 50px 0px 50px 50px; }
li.User.Name .UserIcon { padding: 50px 0px 50px 50px !important; }
li.User.Name.WithIcon { line-height: 50px; }
.ProfileTitle.WithIcon .ProfileIcon { width: 50px; height: 50px; }
#AccountProfile .Picture { width: 280px; height: 200px; }
#Comments .CommentHeader { line-height: 50px; }
#Comments .CommentHeader li div.CommentIcon { padding: 50px 0px 50px 50px; }
li.User.Name .UserIcon { padding: 50px 0px 50px 50px !important; }
li.User.Name.WithIcon { line-height: 50px; }
0
This discussion has been closed.
Comments
Embedded Styles from http://raoul.chinanewbie.com/comments.php?DiscussionID=218&page=1#Item_5
#Comments .CommentHeader li div.CommentIcon
should do it. You could always try adding#Comments .CommentHeader li div.CommentIcon { padding:0 !important; }
to the bottom of vanilla.css and see what happens.