Usually, if you specify the top of the main area, the widget will be displayed there. For example, try to use "Ask box widget". When "Main area - Top" is not displayed in "Position" field of "Admin" > "Layout" > "Add widget", allow_region() function of your widget may be wrong. http://www.question2answer.org/modules.php?module=widget In addition, if you want to display your widget with full-size, there will be a need to customize main() function of theme. e.g...
Before:
$this->output('<div class="qa-main'.(@$this->content['hidden'] ? ' qa-main-hidden' : '').'">'); $this->widgets('main', 'top');
After:
$this->widgets('main', 'top'); $this->output('<div class="qa-main'.(@$this->content['hidden'] ? ' qa-main-hidden' : '').'">');
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.