Hai friends today we are sharing another Awesome trick to shift your Blog's Sidebar from left to right or Viceversa.this is a simple css trick which can change the Whole layout of the blog.this trick is mainly for those who change the postions of sidebar wrapper.Well in this simple code.just You have to find some code manipulate it to Some extent.make sure that you have Copy of your template.i mean Backup your template Before Editing Anything.So go through the Below Tutorial:.
How to Change the Sidebar to Left or Right ?
Go to your Dashboard > Edit html
Now search for the Below Code or the Similar Code.
Now change
Now change
How to Change the Sidebar to Left or Right ?
Go to your Dashboard > Edit html
Now search for the Below Code or the Similar Code.
#main-wrapper {
float: left;
width: 600px;
margin: 0;
padding: 0;
}
Now change
float: left
to float: right
So now if you have to Shift your Sidebar from right to left.find this below Code or Similar Code
#sidebar-wrapper {
float: right;
width: 320px;
margin: 0;
padding: 0 20px 10px;
display: inline;
}
Now change
float: right
to float: left
So now Once Check the Preview of your Template.if Everything is Ok.then Save your Template
There you will be noticed your Sidebar that is moved from right to left.
Now Save your Template and You are Done. Enjoy!