How to Hide Blog Header Description

Blogs, of any kind, in the making requires header consisting of the blog title and blog description.
Although there are some blog calling itself "No Title". Actually it is also the title of the blog.
Usually the description of the blog will consist of several words that could explain the outline of the content or blog content.
Well the thing is, if the description is too long then it can take up header space of our blog.

This time we will discuss a bit of blog tips to hide blog description.
The steps to hide blog description:

  • Login to your Blogger account >> Layout >> Edit Html
  • Click on “Expand widget templates”
  • Find these code:
# header-wrapper {
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
text-align: center;
background: $ headerbgColor;
border: 1px solid $ headerBorderColor;
}
  • Add code: display:none; after #header-wrapper { so it looks as follows:
# header-wrapper {
display: none;
margin: 0px 0px 0px 0px;
padding: 0px 0px 0px 0px;
text-align: center;
background: $headerbgColor;
border: 1px solid $headerBorderColor;
}
  • Save template

Look the result, you will find your blog without blog description.
Good luck

0 comments:

Post a Comment