• My side bar is showing up at the bottom of the page. I am not sure why this is happening, I haven’t changed anything recently other than posting.

    Site: http://www.kaitandko.com

    Has anyone experienced this before or have any suggestions?

Viewing 1 replies (of 1 total)
  • i’m not an expert but try to limit your blog post per page… go to dasboard>settings>reading>Blog pages show at most and set it to 2 post per page..
    Recently, i have developed my own template and i found this problem too, when my post reach 4 post per page, the sidebar move below the content.
    i don’t know why but the problem is with the page div tags, i believe there are some miss placed tag div inside index.php.. if you want to look inside your template file then look for incomplete div tag.
    use firebug or chrome dev tool to inspect the side bar..
    this is what i discover from your site [
    and this script actually load from your index.php, begin from line 3]:

    <div id="site-content">
    div class="row">
    	<div class="col-md-8">
    		<main id="content"
    ...bla...

    and when i changed to this, the sidebar arranged back to its place:

    <div id="site-content">
    div class="row col-md-8">
    	<div class="col-md-12">
    		<main id="content"
    ...bla...

    if you want to change the code, i suggest to make a child theme, or ask for the update from Olsen..

    sincerely,
    jjerro

Viewing 1 replies (of 1 total)
  • The topic ‘Side bar is showing up at bottom’ is closed to new replies.