raja

How to remove space between Tab & sidebar in bloggers

To remove or reduce space between bloggers Tab and sidebar , Go to Edit Html press ctrl-F and search a code

main-inner

you would find a code look like this 

.main-inner {
  padding-top: $(main.padding.top);
  padding-bottom: $(main.padding.bottom);


Now Replace the code from given blow

.main-inner {
  padding-top: 0px;
  padding-bottom: 0px;

method-02

<Variable name="main.padding.top" description="Main Padding Top" type="length" default="30px" min="0" max="100px" value="30px"/>

search this code and change the value from 30 to 0 (zero)

method-03

just add this css code in your template just after  ]]></b:skin>.


.sidebar {
margin-top: 50px !important;
}

method-04

just add this css code in your template just after  ]]></b:skin>.

.main-inner .column-right-outer {margin-top:-30px}

No comments:

Post a Comment