Override the function body_tags() in your theme, e.g. like this:
public function body_tags() { $class = 'qa-template-' . qa_html($this->template); $class .= empty($this->theme) ? '' : ' qa-theme-' . qa_html($this->theme); if (isset($this->content['categoryids'])) { foreach ($this->content['categoryids'] as $categoryid) { $class .= ' qa-category-' . qa_html($categoryid); } } $class .= ' your-class-here'; $this->output('class="' . $class . ' qa-body-js-off"'); }
Welcome to the Q&A site for Question2Answer.
If you have a question about Q2A, please ask here, in English.
To report a bug, please create a new issue on Github or ask a question here with the bug tag.
If you just want to try Q2A, please use the demo site.