• Resolved blankpagestl

    (@blankpagestl)


    When I click through to a specific post and view it in mobile, whatever’s in the sidebar appears ABOVE the article thereby making the user have to scroll through all of the sidebar content to get to the article. How do we change this?

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author themeinwp

    (@themeinwp)

    Hi @blankpagestl,

    First off, We’d like to extend a warm welcome and thanks for using Blog Expert.

    Regarding your support query.

    1. Please Goto Appearance >> customize >> Additional CSS and add below CSS.

    @media only screen and (max-width: 991px){
    	body.left-sidebar .recent-blog,
    	body.left-sidebar .site-content{
    		display: table;
    		width: 100%;
    		height: 100%;
    		 padding-left: 15px;
    	    padding-right: 15px;
    	}
    	body.left-sidebar #primary {
    		display: table-header-group;
    		float: none;
    	}
    	body.left-sidebar #secondary{
    		display: table-footer-group;
    		float: none;
    	}
    }

    Hope this helps.
    Best Regards,

    Thread Starter blankpagestl

    (@blankpagestl)

    Thank you! That did it!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Sidebar Help?’ is closed to new replies.