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.