How to move the sidebar to right or left in blogger


Some times you may need to change your blogger template layout and move the sidebar to right or left .



Blogger tools :How to move the sidebar to right or left in blogger
Blogger tools :How to move the sidebar to right or left in blogger

How to move the sidebar to right or left in blogger


"In that example we will use a template with right side bar and we will move it to left"


First you need to save a backup from your template



2-From the blogger dashboard go to template


3-Click on edit HTML


move the post body to right by searching for This Code :



#main-wrapper {
float: left;
width: 600px;
margin: 0;
padding: 0;
}




 Change float: left; to float: right;


Now move the side bar to left


Search for this code :


#sidebar-wrapper {
float: right;
width: 320px;
margin: 0;
padding: 0 20px 10px;
display: inline;
}


Change float: right; to float: left;


Click Save


You will see the side bar now moved to left and the post body is in the right


Add a Comment