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

Related Posts:

  • How To Improve Your Blog's Alexa RankAlexa.com is a website that keeps data about sites and blogs that are popular. They keep data of each and every blog and site. The data which Alexa keeps is bounce rate of your site, daily visitors time, traffic sources, load… Read More
  • How To Get DMCA Protection For Your Blogger BlogNow a days a problem that every unique content sharer is facing is content stealing. whenever a unique article is shared and it becomes popular then not only those visits that article who gets idea/help from that post but als… Read More
  • How To Create Anchor Links In BloggerHave you ever heared about anchor links? Maybe you are not aware of it as only a few of bloggers use this great thing to make their posts impressive and easier to read. Anchor links are the links which takes you to a specific… Read More
  • How To Add Javascript, HTML And CSS Code Reader In BloggerCode reader is a program that reads html/css/java or any other codes. An example of it is the Html/javascript option which you can see at the time of adding a gadget in your blog. That program reads your java/html and css cod… Read More
  • How To Get Your Blog To The Top Of Google Search ResultsAn issue about seo and bringing blog or site to search result's front page is common with every blogger and webmaster. Despite of applying all the seo tips, meta codes and new seo tricks still there is no improvement? so what… Read More