Showing posts with label Remove. Show all posts
Showing posts with label Remove. Show all posts

Tuesday, November 27, 2012

How to Hide Sidebar, Header in Individual Post and Static Page


As many times we want to create a full width page post related with different topic like as we create for generators and for this simple implementation we have to hide our sidebar, post footer, middle bar etc. in specific post or in static pages.





 Hide Sidebar in Pages and Posts

  • Login to Blogger > Dashboard
  • Click on Drop Down Menu and select Post
  • Click on HTML
  • Paste below code in it, before create a post.
    <style>

    #sidebar-wrapper, #midsidebar-wrapper, .gapad2, .blog-pager, .post-header-line-1, .post-footer { display:none !important;}

    #main-wrapper { width:98%!important;}

    .post { width:98%!important; }

    </style>

  • Now you can start to write your post.
  • This code will hide your sidebar, middle sidebar, post footer and other unnecessary widget in specific. 



Hide Only Header in  Pages and Posts

  • Login to Blogger > Dashboard
  • Click on Drop Down Menu and select Post
  • Click on HTML
  • Paste below code in it, before create a post.

    <style>

    #header { display:none !important;}

    #main-wrapper { width:742px!important;}

    .post { width:715px!important; }

    </style>

  •  Now you can start to write your post.
  • This code will hide only header in specific post and in pages.


Customization

  • Adjust the width to replace this 98% according to your blog width and requirements.
  • Adjust the width to replace this 742px and 715px according to your blog width and requirements.



If Any Problem Comes, Ask in Comments


Monday, November 19, 2012

How to Remove Date Ribbon From Blogger Dynamic Views


As we all know that Blogger Dynamic Views has many things in bloggers but as we can customize the blogger template according to us and any thing can easily hide or show, similarly we can easily now customize the Dynamic Views of Blogger and today we starts from the How to Remove Date From Blogger Dynamic Views. As Blogger Dynamic Views like by some body and also not be'coz some thing is limited in it but many kinds of new features also available, but anyone can also customize it.





Remove Date From Blogger Dynamic Views

  • Login to Blogger > Dashboard
  • Click on Drop Down Menu and select Template
  • Now Click on Customize > Advanced > Add CSS
  • Paste below code in it.

.ribbon{
display: none !important;
}

  • Click on Apply Button.


If Any Problem Comes, Ask in Comments


Monday, October 29, 2012

How to Remove Subscribe to Posts Atom from Blogger


Some times when we create a blog and post anything then we saw a text at bottom of the post Subscribe to Posts Atom from Blogger and many blog owners wants to remove it OR hide it from blogger. As we know many bloggers have been published this tutorial but we also post because visitors can easily solve their problem. It's very easy you just have to remove a single line from your blogger template.



Follow the Steps....!

  • Login to Blogger > Dashborad
  • Click on Drop Down Menu and select Template
  • Backup your Template before making any changes to your blog
  • Now Click on Edit HTML > Proceed > Expand Widget Templates
  • Press Ctrl + F and search the code shown below.

<b:include data='feedLinks' name='feedLinksBody'/>

  •  Now, Delete this line.
  • Save your template and you are done.



If Any Problem Comes, Ask in Comments

Saturday, October 27, 2012

How to Remove No Post from Bloggger


When you don't post anything in your blog then blogger shows a message that No Post and many bloggers designed their blog as they don't want to show posts in home page so they don't post anything but blogger shows a message   No Post and they want to disable it OR remove it. So, you can do it very easily by adding some 3 line codes of CSS.



Remove No Post from Blogger

  • Login to Blogger > Dashborad
  • Click on Drop Down Menu and select Template
  • Backup your Template before making any changes to your blog
  • Now Click on Edit HTML > Proceed > Expand Widget Templates
  • Press Ctrl + F and search the code shown below.   

]]></b:skin>

  • Paste below code before ]]></b:skin>

    /*---Remove No Post by widgetgenerators.blogspot.com----*/
          .status-msg-wrap
          {
          display: none;
          }
    /*---Remove No Post by widgetgenerators.blogspot.com----*/

    •  Save Your Template


    If Any Problem Comes, Ask In Comments