• Resolved ksgray

    (@ksgray)


    Hi

    I’ve almost finished editing the layout of my site, but I’ve just noticed that when I click into the blog post, the sidebar has moved right down to the bottom of the page. How can I change this so it looks like my main page? Can anyone help?

    This is my site: https://www.ksgandco.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    You’re calling your sidebar in the wrong place of the templates where “the sidebar has moved right down to the bottom of the page”.
    When you call your sidebar, make sure it is outside <div id="main">.

    At the moment the sidebar is here

    <div id="main">
     ...
     <div id="side">
      ...
     </div>
     ...
    </div>

    It should be

    <div id="main">
     ...
    </div>
    <div id="side">
     ...
    </div>

    Thread Starter ksgray

    (@ksgray)

    Great, thanks so much! Problem solved.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Side bar has moved to the bottom of the page when I go into blog post’ is closed to new replies.