Title: Sidebars
Last modified: February 1, 2017

---

# Sidebars

 *  Resolved [askmediy](https://wordpress.org/support/users/askmediy/)
 * (@askmediy)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/sidebars-40/)
 * HI how are you. First off I love your this. However I’m having an issue with 
   the sidebars on a single questions being pushed way down.
 * Yes I did install your code in the functions.php file but still no joy no matter
   what theme I use. Any ideas?

Viewing 1 replies (of 1 total)

 *  Plugin Author [PickPlugins](https://wordpress.org/support/users/pickplugins/)
 * (@pickplugins)
 * [9 years, 2 months ago](https://wordpress.org/support/topic/sidebars-40/#post-8726217)
 * Thanks for your post.
 * Please update plugins first on latest version and then if you want to remove 
   sidebar please add following codeo n theme functions.php file
 *     ```
       remove_action('qa_action_single_question_sidebar','qa_action_single_question_sidebar_function');
       ```
   
 * and if you want to keep sidebar then use exact class (site-main) for content 
   container.
 *     ```
       add_action('qa_action_before_single_question', 'qa_action_before_single_question', 10);
       add_action('qa_action_after_single_question', 'qa_action_after_single_question', 10);
   
       function qa_action_before_single_question() {
         echo '<div id="main" class="site-main">';
       }
   
       function qa_action_after_single_question() {
         echo '</div>';
       }
       ```
   
 * Regards
    -  This reply was modified 9 years, 2 months ago by [PickPlugins](https://wordpress.org/support/users/pickplugins/).

Viewing 1 replies (of 1 total)

The topic ‘Sidebars’ is closed to new replies.

 * ![](https://ps.w.org/question-answer/assets/icon-128x128.png?rev=3126673)
 * [PickPlugins Question Answer](https://wordpress.org/plugins/question-answer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/question-answer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/question-answer/)
 * [Active Topics](https://wordpress.org/support/plugin/question-answer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/question-answer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/question-answer/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [PickPlugins](https://wordpress.org/support/users/pickplugins/)
 * Last activity: [9 years, 2 months ago](https://wordpress.org/support/topic/sidebars-40/#post-8726217)
 * Status: resolved