Blogger sidebar customization


Make blogger sidebar  height 100%


1.Search the code given below in the box

   .main-inner .columns {
        padding-left: $(main.column.left.width);
        padding-right: $(main.column.right.width);
      
      }


Replace the above code as given below ( by adding just   display: flex;   property)

   .main-inner .columns {
        padding-left: $(main.column.left.width);
        padding-right: $(main.column.right.width);
        display: flex;
      
      }

2.   Search the code give below in the box :



.main-inner .column-left-outer {

   width: 30%;
   float: right;
   margin-left: -$(main.column.left.width);

}


Replace the above code as given below ( by adding just   height: 100%;   property )

.main-inner .column-left-outer {


   width: 30%;
   float: right;
   margin-left: -$(main.column.left.width);
   background:#eee;
   height:100%

}