Melvin Heinsius
asked 9 years ago

Hi,

I noticed that you cannot up or down vote an answer or question on mobile. (tablets yes, but not phone). Is it possible to make it work also on mobile?

Thanks.

1 Answers
DominicStaff
answered 9 years ago

Hi,
At the moment, we have remove the vote section for an answer or question on the mobile device, if you want to display and use it on the mobile, you can add the following code to the style.css file:

@media (max-width: 767px) {
.dwqa-single-question .dwqa-question .dwqa-vote { 
 display: block !important;
 left: -7px !important;
}
.dwqa-single-question .dwqa-question .dwqa-header {
    padding-left: 40px;
}
}
@media (max-width: 767px) {
.dwqa-single-question .dwqa-answer .dwqa-vote {
    display: block !important;
    left: 7px;
}
.dwqa-single-question .dwqa-answer .dwqa-header {
    padding-left: 40px;
}
.dwqa-single-question .dwqa-answer .dwqa-content {
    padding-left: 40px;
}
}

Hope this helps !

lifevise
replied 9 years ago

Thank you very much!!

Powered by DW Question & Answer Pro