accepted answer checkmark

How do you get the circled checkmark next to an accepted answer like on this form?
0
Best Answer
-
jspautsch ✭✭✭
First download the image (or whatever image you want to use) and place it in your theme's design folder (or wherever your css file resides): http://www.vanillaforums.org/themes/vforg/design/check.png
Then add the following code to your CSS file:
.QnA-Accepted { background: url("check.png") no-repeat scroll 0 0 transparent; display: block; height: 40px; left: -50px; overflow: hidden; position: absolute; text-indent: -1000px; top: 10px; white-space: nowrap; width: 40px; }
1
Answers
First download the image (or whatever image you want to use) and place it in your theme's design folder (or wherever your css file resides): http://www.vanillaforums.org/themes/vforg/design/check.png
Then add the following code to your CSS file:
Thank you!!
This is working great but one problem. There isn't a way now to reject a previously accepted answer.
Sorry, I see now this is a issue with vanilla itself and not the css. How does one allow a user to reject a previously accepted answer? Also, is there a way to only allow one accepted answer?
background: url("check.png") no-repeat scroll 0 0 transparent;
it is working properly. but i have small problem. im using default theme.
i added a image in to
themes\default\design
image path is wrong
then i added in to
vanilla\applications\dashboard\design\images
not working
but i add image url like this, its working.
http://www.vanillaforums.org/themes/vforg/design/check.png
Thank you.. i like this