Panupat
Well-known member

To add it to your like/unlike, copy it onto your server inside the /styles directory.
For example, if you put them here
http://your-forum-root/styles/default/xenforo/icons/like.gif
http://your-forum-root/styles/default/xenforo/icons/unlike.gif
Add this to your EXTRA.css. You only need padding-bottom if thumbs got cropped in your style, increase it if necessary.
HTML:
a.like {
background: url(styles/default/xenforo/icons/like.gif) no-repeat;
padding-left: 20px;
padding-bottom: 1px;
}
a.unlike {
background: url(styles/default/xenforo/icons/unlike.gif) no-repeat;
padding-left: 20px;
padding-bottom: 1px;
}