First of all, I should make clear that this should not be the right way. It is a temp solution until someone put in repository the proper one. You should replace in your style.css lines 1870-1872
.question-page .answer-img-accept:hover { background: url(../images/vote-accepted-on.png); }
with this
.question-page .answer-img-accept { background: url(../images/vote-accepted.png); width: 23px; height: 23px; } .question-page .accepted-answer .answer-img-accept, .question-page .answer-img-accept:hover { background: url(../images/vote-accepted-on.png); }
You will also need to stop the server, run setup.py install and manage.py collectstatic as I assume you did in the past
I had the same question/problem . After investigation, I realized that style.css does not contain all the information included in style.less.
For me, generated style.css again from style.less appeared the button. May be you find this info useful
if you need more detailed info about the specific problem, I think that the follow information is missing from style.css
.question-page .answer-img-accept { background: url(../images/vote-accepted.png); width: 23px; height: 23px; }
.question-page .accepted-answer .answer-img-accept, .question-page .answer-img-accept:hover { background: url(../images/vote-accepted-on.png); }
alexandros.z ( 2012-04-11 15:21:22 -0500 )editCreate your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2012-04-11 15:05:46 -0500
Seen: 83 times
Last updated: Apr 11 '12
how can an admin answer own question and accept it?
Can an admin mark question as answered?
User gains karma for accepting own answer
Accepting answer results in broken image
Incorrect question owner displayed when trying to mark an accepted answer for a question I don't own
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.