Assamtechtricks

How to decrease the space between sidebar and post body

Google Blogger has beautiful inbuilt blog template that gives a nice look to our blogs, we can use them without making any significant changes, but sometimes we are interested to customize the template in our own way, some of us may not like the spacing between different section viz. space between post body
and sidebar or may be the spacing between header and post body, so basically at last we need some partial changes to the templates to make a self satisfactory blog, in this context we need to learn some primary coding languages. I am writing this article to give you a basic idea of spacing between section, as for examples I will show you how to decrease the space between right sidebar and post body, you can change the codes in your own ways to make your desired changes. Here I go..

Follow the following steps 

1) Go to Template-----Edit HTML
2) Search for the code ]]></b:skin>
3) Place the following piece of codes just before step 3 code

 #sidebar-right-1{
position: relative;
left: -12px !important;
}

 You can adjust the value -12px according to your spacing.