raja

Remove Extra padding From Bloggers Template.

 there is an extra padding around the simple bloggers template , that make your bloggers look , un professional. In this tutorial i will let you know how we can remove white padding from the bloggers template..follow the steps below..

Go to the Bloggers Dashboard , in the left side menu click the theme option then go to Edit Html

click the cursor in html area then press Ctrl F from your keyboard , then search
 content.padding   and  content.padding.horizontal

you would find a code look like below


<Variable name="content.padding" description="Content Padding" type="length" default="10px" min="0" max="100px" value="10px"/>

<Variable name="content.padding.horizontal" description="Content Horizontal Padding" type="length" default="$(content.padding)" min="0" max="100px" value="10px"/>




Now change the value of conent.padding and in next line content.padding.horizontal to 0 ( zero )
After followed the tips mentioned above your code would be look like below.



<Variable name="content.padding" description="Content Padding" type="length" default="10px" min="0" max="100px" value="0px"/>

   <Variable name="content.padding.horizontal" description="Content Horizontal Padding" type="length" default="$(content.padding)" min="0" max="100px" value="0px"/>




And your extra padding will disspear from the template.




No comments:

Post a Comment