Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
377 views
in Q2A Core by

2 Answers

0 votes
by
Easy way is to do is go to theme and find favorit icon and replace with the same size whatever graphic you want.

If you are going to change size of it than you need to tweak your css file too.
0 votes
by

go to qa-theme\Default\qa-styles.css

You need to change these lines:

.qa-favoriting {float:right; padding-right:48px; padding-top:4px;}

.qa-favorite-button,.qa-favorite-hover,.qa-unfavorite-button,.qa-unfavorite-hover {background:url(favorite-plus.gif) no-repeat; border:0; height:26px; width:26px;}
    .qa-favorite-button {background-position: 0 -26px;}
    .qa-favorite-hover,.qa-favorite-button:hover {background-position: 0 0px;}
    .qa-unfavorite-button {background-position: 0 -52px;}
    .qa-unfavorite-hover,.qa-unfavorite-button:hover {background-position: 0 0px;}
 

by
Thank you so much.it has worked :)
...