• I would like to move my sidebar to the left side like on this site https://educhalk.org/blog/ but I can’t figure out what files to change. Also, I would also like to have the option of keeping it on the right as well, but if that’s not possible, just moving it to the left would be great. I am using my blog as a CMS and like it better on the left.

Viewing 1 replies (of 1 total)
  • To move the sidebar to the right, go into the theme’s style.css file and change

    #main {
    	background:#FFF url(img/background/main_shadow1.gif) top repeat;
    	width:605px;
    	padding:13px 15px 15px;
    	float:right;
    	overflow:hidden;
    }

    to

    #main {
    	background:#FFF url(img/background/main_shadow1.gif) top repeat;
    	width:605px;
    	padding:13px 15px 15px;
    	float:left;
    	overflow:hidden;
    }

    and

    #sidebar {
    	background:#F7F7F7 url(img/background/sidebar_bg.gif) top repeat;
    	width:300px;
    	float:left;
    	font-size:95%;
    	line-height:145%;
    	overflow:hidden;
    	padding-top:8px;
    }

    to

    #sidebar {
    	background:#F7F7F7 url(img/background/sidebar_bg.gif) top repeat;
    	width:300px;
    	float:right;
    	font-size:95%;
    	line-height:145%;
    	overflow:hidden;
    	padding-top:8px;
    }

Viewing 1 replies (of 1 total)
  • The topic ‘move sidebar to left on inove theme’ is closed to new replies.