Sunday, June 9, 2013

How to Align Blog Title and Description in blogger:



How to Align Blog Title and Description in blogger:

We can align both blog title and description in blogger.With this alignment we can change position of blogger text and description to either left, right or center.

follow below steps to align blog title and description in blogger

step 1 : go to blogger dashboard

step 2 : click on template

step 3 : click on edit html

step 4 : search below code

.header-inner .Header .titlewrapper,
.header-inner .Header .descriptionwrapper {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
}

To align blog title and description add below code to above code before } tag.

  text-align: Center;








Then the new code after change is below



.header-inner .Header .titlewrapper,
.header-inner .Header .descriptionwrapper {
  padding-left: 0;
  padding-right: 0;
  margin-bottom: 0;
text-align: Center;
}
step 5 :click on save template.

No comments:

Post a Comment