• Hi,

    There seems to be a styling issue with the single question page. It pushes down the sidebar.

    I have been through the other questions in the forum relating to sidebar and I have done your suggestions, but nothing seems to work.

    I’m using Genesis theme.

    Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author PickPlugins

    (@pickplugins)

    You need to add content wrapper that provide your theme. please see the code here
    https://pickplugins.com/docs/documentation/question-answer/faq/single-question-page-full-width-issue/

    after checking your link here is code should work.

    
        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 '<p class="site-description" itemprop="description"><?php bloginfo( 'name' ); ?></p>
    <div class="content-sidebar-wrap">
      <main class="content">';
        }
        function qa_action_after_single_question() {
          echo '</main>
    </div>';
        }
    
    

    Also i noticed, sidebar isn’t showing. have you removed it?
    Regards

Viewing 1 replies (of 1 total)
  • The topic ‘Style issue on single question’ is closed to new replies.