Reply To: Splitting Sidebar in Optimal Theme

Homepage Community Forums Optimal Theme Support Splitting Sidebar in Optimal Theme Reply To: Splitting Sidebar in Optimal Theme

#10746
Wes
Moderator

    Are you sure you added the css? I can see that the widget locations are showing up, but I don’t see any css styles for it.

    Once you add the css it should work instantly. Here is what it will look like once you do – http://i.imgur.com/mSd9dfe.png

    Also, if you did add the css and it’s not showing up, make sure you clear your cache if you’re using any caching plugins for your site.

    Let me know if this helps.

    .split-sidebars .aligncenter {
    	margin: 0 auto 12px;
    	margin: 0 auto 1.2rem
    }
     
    .split-sidebars ul.children {
    	margin-left: 0;
    }
     
    .split-sidebar-left,
    .split-sidebar-right {
    	width: 160px;
    }
     
    .split-sidebar-left {
    	float: left;
    }
     
    .split-sidebar-right {
    	float: right;
    }
     
    .bottom-sidebar {
    	clear: both;
    }
     
    /*
    Add To Media Queries max-width: 1139px
    ---------------------------------------------------------------------------------------------------- */
    @media only screen and (max-width: 1139px) {
     
        .split-sidebar-left,
    	.split-sidebar-right {
    		width: 100%;
    	}
    }