How To Customize Blogger Static Pages With CSS

How-To-Customize-Blogger-Static-Pages-With-CSS

Static pages are those pages of a blog which are created as posts are created for example Contact page, About page, Sitemap Page, Advertise Page etc. Blogger static pages look like posts except if you have used CSS or Javascript to make it different then post pages. And all the static pages should be different then post pages to make them look like they are apart of posts. So in this post I will show you how to customize static pages in blogger with CSS.


Follow below mentioned steps to customize your static pages:

Step 1: Go to blogger dashboard and navigate to Pages.


Step 2: Edit your page.



how-to-customize-blogger-static-pages-with-css

Step 3: Switch to Html editor of the page.



customize-blogger-static-pages-with-css

Step 4: Now you have to add your css codes, so copy your desired code and paste it in your page's html editor:

Before copying code add the below piece of codes in the html editor in the top or bottom of the editor:

<style>


</style>


Now all you have to do is to copy code for desired functions and paste it in between:


<style>


</style>


(1). To Remove Footer:



how-to-remove-footer-static-pages-blogger

To remove footer add the below code between <style>---------</style>


.post-footer {

  display: none;
}

(2). To Remove Blog Pager:



blog-pager-remove-in-blogger-101helper

To remove pager from static page, copy below code and paste it between <style>---------</style>


#blog-pager {

display:none;
}

(3). To Change Background Color Of Your Static Page:


.content{

background:#eee;
}

Replace #eee with your desired color code. Use our color picker tool to get code of a color.


(4). To Customize Page Title:


To customize page title you have to add the following code:


h1.post-title.entry-title {

  border-bottom: 2px solid #93C47D;
  color: #93C47D;
  letter-spacing: 2px;
  font-size: 35px;


If this code is not working use this one:


h2.post-title.entry-title {

  border-bottom: 2px solid #93C47D;
  color: #93C47D;
  letter-spacing: 2px;
  font-size: 35px;
}

To change color replace #93C47D with your desired color code. Use color picker to get code of color.


To change font replace Gruppo with font-family name.



(5). To Customize Content Container Width:

Content container means the box which contains your content. Normally the content container has a small width but if you want to have a full width use below code for it.



.post.hentry {
width:102%;
}

To increase or decrease width replace 102% with the your desired width.


(6). Hide Comments And Comment Box:


To hide comments and comment box read this post.


Step 5: Publish your page and you are done.


Hope you like this post and you found it helpful. If this post help you out please read more posts and share them with others.


Search Tags: Static pages blogger,blogger tips and tricks 101helper,blogger customization tricks css,javascript,remove footer,Static pages full width blogger,blogger remove comments from static pages,customize static pages blogger,edit static pages blogger


EmoticonEmoticon