Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
758 views
in Q2A Core by
retagged by

I am running 1.6.3, and I can see that the check mark for the Best answer is floating wihtin the body of an answer.  Is there a way to move it/fix it?

 

Q2A version: 1.6.3

1 Answer

0 votes
by

I think it is a bug of Snow theme. Probably, you would set OFF Q2A option ("Admin" > "Viewing" > "Allow voting on answers"). Display position of select mark is absolute. Because there is no margin on the left side of the answer, mark is displayed along with the answer.

Solution1:

.qa-a-item-main {
  padding-left:70px;
}
.qa-a-selection {
  top:20px;
   ...

Solution2.

.qa-a-selection {
  /*position: absolute;*/
  float: right;
  ...

There will be any other solution.

by
You are right.  When I enable voting, the check mark goes to the right place.

What file should I edit for this?

Also, since I do not want to have voting, how do I just disable the checkmark?
...