Results for Blogger and Wordpress

How To Add Notification Bar In Blogger Easily (Blogspot)

March 22, 2020

Adding A notification bar in Blogger is quite simple and can be easily done even if you are not familiar with the blogger template area in your blog. A notification bar is a highly useful blogger widget which can be used to display advertisement, hot deals, a link to your facebook page and other related links. Apart from the fact that it helps makes displaying of important notification easier, it also makes your blog design look more professional and presentable. And the Notification bar is also away to promote your affiliate links and be sure to get links because it stands out visible without even affecting your blogs elegant look. That been said, the usefulness of the notification bar cannot be over emphasize, so I would go straight to the point and teach you how to add it to your blog.

How To Add Notification Bar In Blogger (Simple Method)

  • STEP 1
1. Go To Blogger Dashboard Chose Your Blog
2. Click on Templateand select Edit HTML
Use the search command of on the browser to find the code. To bring out a search bar, click on the template area and Press Ctrl + F(its usually that on most browsers)copy and paste this code in the bar that appears to search for it ]]></b:skin>   If you can’t find the whole line, search for skin
Now Right Above this, paste the code below
/*————-MOON T&T NOTIFICATION BAR —————-*/
#BLOGGERNOTIFICATIONWRAP {
    DISPLAY: NONE;
    HEIGHT: 41PX;
    MARGIN: -41PX 0 0;
    PADDING: 0;
    POSITION: FIXED;
    WIDTH: 100%;
    Z-INDEX: 999999;
}
#BLOGGERNOTIFICATION {
    BACKGROUND: NONE REPEAT SCROLL 0 0 #000000;
    BORDER-BOTTOM: 3PX DOTTED #FFFFFF;
    BORDER-RADIUS: 10PX 13PX 7PX 5PX;
    COLOR: #FFFFFF;
    FONT-FAMILY: ARIAL,SANS-SERIF;
    FONT-SIZE: 14PX;
    FONT-WEIGHT: BOLD;
    HEIGHT: 37PX;
    MARGIN: -30PX 5PX 5PX -1200PX;
    PADDING-TOP: 7PX;
    POSITION: RELATIVE;
    TEXT-ALIGN: CENTER;
    TEXT-DECORATION: NONE;
    TEXT-SHADOW: 1PX 1PX 1PX #000000;
    WIDTH: 500%;
    Z-INDEX: 9998;
}
#BLOGGERNOTIFICATION A {
    BORDER-RADIUS: 3PX 3PX 3PX 3PX;
    BOX-SHADOW: 0 0 5PX RGBA(0, 0, 0, 0.35);
    COLOR: #000000;
    FONT-FAMILY: CALIBRI,SANS-SERIF;
    FONT-SIZE: 13.5PX;
    PADDING: 1PX 7PX;
    TEXT-DECORATION: NONE;
}
#BLOGGERNOTIFICATION A:HOVER {
    TEXT-DECORATION: UNDERLINE;
}
#BLOGGERNOTIFICATION IMG {
    DISPLAY: NONE;
}
If you are good with CSS feel free to play around with the above code to customize the display of the notification bar to your taste and size.
Now Hit Save
After Doing that, move to
  • STEP 2
Now Using the same method to find Search for <Body> Right above the body tag, Paste the code below

<DIV CLASS=’ OPENBLOGGERNOTIFICATION’ ID=’BLOGGERNOTIFICATIONWRAP’ STYLE=’DISPLAY: BLOCK; MARGIN-TOP: 0PX;’>
<DIV ID=’BLOGGERNOTIFICATION’>
POST WHAT EVER MESSAGE YOU WANT HERE
</DIV>
</DIV>
Replace “Post what ever message you want here” with your own message. You can use image links, and customize the message any how you want it to display using basic HTML codes, color etc.
Save the template and preview blog to review your work 
How To Add Notification Bar In Blogger Easily (Blogspot) How To Add Notification Bar In Blogger Easily (Blogspot) Reviewed by Wanem Club on March 22, 2020 Rating: 5

How to Remove Powered by Blogger – Attribution Widget?

February 26, 2018
In this article, I will be demonstrating how to remove or hide attribution widget ‘Powered by Blogger’ in footer of blogger blogspot blogs. Before going to the process, backup your blogger template, while editing html code if anything goes wrong or template modified design doesn’t work or looks good you can restore from backed up template. Here I have demonstrated you two methods for removing attribution widget. Some blogger templates may not support method 1 then you need to follow method 2 for successfully removing attribution widget.

Method 1: Remove ‘Powered by Blogger’ by unlocking Attribution widget

Step 1 : Go to your blog “Template” | click on “Edit HTML”.

Step 2 : Here on drop-down “jump to widget” option and select Attribution 1 as shown below
Step 3: After selecting Attribution 1 widget you will be able to see this line
<b:widget id=’Attribution1′ locked=’true’ title=” type=’Attribution’> 
on your blogger template.
Step 5: Once done click on ‘Save template’.
Step 6 : Now go to layout option and at the below you can see attribution gadget, click edit you will be able to see new pop up window, click on remove button. that’s it you are done.

Method 2: Hide Attribution widget by adding CSS code.

Follow the same step 1 as mention above in method 1.
Step 2: Search this line of code
body {
in your blogger template, for quick finding Hit CTRL+F
Add this line of code
#Attribution1 {display: none;}
above the body { code, as shown in the below picture.

Save template and view your blog, you will be no longer able to see attribution widget in footer of your blogspot blog.
Removing this attribution widget will add professional look to your blog.
Hope any one of this method worked for your blog on removing footer credits ‘attribution widget’.
How to Remove Powered by Blogger – Attribution Widget? How to Remove Powered by Blogger – Attribution Widget? Reviewed by Wanem Club on February 26, 2018 Rating: 5

How To Increase or Change Width Of Your Blogger Template

October 16, 2017
Learn how to increase blogger template width. Changing the width of blogger template would give you some more space where you would be able to add pic,videos, images and much more. There are uncountable blogger templates through the world of internet. As you can use them in any way. But the problems rises when you like a particular template and want to continue it. But need to change its width because of small or because of more width. Any how what ever be your question today we are going to change the template size in blogger. Before getting into the article make sure you have a backup to your template.


Hope you have created your backup, if any thing goes wrong it would help you. Now,
  1. Login into Blogger
  2. Select your blog if you have many
  3. Then migrate to TEMPLATE –> Click on “EDIT HTML
Now you need to find the parts that are responsible for, width of your template. There are Main sectionPost sectionsSidebarHeader Section and Footer. The sample code how they look.
#header-wrapper {
width:660px;
margin:0 auto 10px;
border:1px solid $bordercolor;
}
…………………………….
#outer-wrapper {
width: 660px;
margin:0 auto;
padding:10px;
text-align:$startSide;
font: $bodyfont;
}
…………………………….
#main-wrapper {
width: 410px;
float: $startSide;
…………………………….
#sidebar-wrapper {
width: 220px; float: $endSide;
…………………………….
#footer {
width:660px;
clear:both;
► header-wrapper is Header
► outer-wrapper is our Main section, other elements are wrapped inside of it..
 main-wrapper represents Post Section
► sidebar-wrapper stands for Sidebar
► footer is Footer :]
How To Increase or Change Width Of Your Blogger Template How To Increase or Change Width Of Your Blogger Template Reviewed by Wanem Club on October 16, 2017 Rating: 5

How to Create a Smart Sitemap in Blogger

October 15, 2017
May be you have seen many tutorial to create a sitemap page for your website. Today i will share my own used sitemap code for your websites. This sitemap code help your readers to see your all of posts with date and labels.

How to Add a Full Sitemap to Blogger


Step 1: Login your Blogger Site and select your blog
Step 2: Then Go to Pages and click on New page
Step 3: Click on HTML tab and delete all of code then paste following code inside the empty box.

<style type="text/css">
#bp_toc {
    background: #FFFFFF;
    border: 0 solid #000000;
    margin-top: 10px;
    padding: 10px 0;
    width: 100%;
}
h3.bp_toc_title {
    font-size: 28px;
    line-height: 30px;
    padding-top: 40px;
    margin: 0 0 20px;
}
#bp_tocm {
    margin-right: 30px;
}
#bp_toc a {
    text-decoration: none !important;
}
#bp_toc a:hover {
    text-decoration: underline !important;
}
.toc-header-col1, .toc-header-col2, .toc-header-col3 {
    background: #4e4949;
    border-bottom: 5px solid #dfdfdf;
    padding: 10px;
    width: 50%;
}
.toc-entry-col2 {
    border-left: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
}
.toc-header-col2 {
    border-left: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
    width: 15%;
}
.toc-header-col3 {
    width: 35%;
}
.toc-header-col1 a:link, .toc-header-col1 a:visited, .toc-header-col2 a:link, .toc-header-col2 a:visited, .toc-header-col3 a:link, .toc-header-col3 a:visited {
    color: #EBEBEB;
    font-size: 14px;
    font-style: normal;
    font-weight: bold;
    line-height: 1.4em;
    text-decoration: none;
    border-collapse: separate;
}
.toc-header-col1 a:hover, .toc-header-col2 a:hover, .toc-header-col3 a:hover {
    text-decoration: underline;
}
.toc-entry-col1, .toc-entry-col2, .toc-entry-col3 {
    background: #F8F8F8;
    border-bottom: 2px solid #FFFFFF;
    padding: 10px;
}
.toc-entry-col2 {
    border-left: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
}
.toc-entry-col1 a, .toc-entry-col2 a, .toc-entry-col3 a {
    color: #45818E;
    font-family: 'Verdana',Arial,sans-serif;
    font-size: 12px;
}
.toc-note {
    background-color: #4e4949;
    color: #EBEBEB;
    display: inline-block;
    font-size: 14px;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #dfdfdf;
}
</style>

<div id='bp_tocm'>
<div id='bp_toc'>
<script type='text/javascript'>
//<![CDATA[
var postTitle=[],postUrl=[],postDate=[],postSum=[],postLabels=[],sortBy="datenewest",tocLoaded=!1,numChars=250,postFilter="",tocdiv=document.getElementById("bp_toc"),totalEntires=0,totalPosts=0; function loadtoc(c){if("entry"in c.feed){var d=c.feed.entry.length;totalEntires+=d;totalPosts=c.feed.openSearch$totalResults.$t;if(totalPosts>totalEntires){var b=document.createElement("script");b.type="text/javascript";startindex=totalEntires+1;b.setAttribute("src","/feeds/posts/summary?start-index="+startindex+"&max-results=500&alt=json-in-script&callback=loadtoc");tocdiv.appendChild(b)}for(b=0;b<d;b++){for(var a=c.feed.entry[b],e=a.title.$t,k=a.published.$t.substring(0,10),l,f=0;f<a.link.length;f++)if("alternate"== a.link[f].rel){l=a.link[f].href;break}var g="content"in a?a.content.$t:"summary"in a?a.summary.$t:"",g=g.replace(/<\S[^>]*>/g,"");if(g.length>numChars)var g=g.substring(0,numChars),h=g.lastIndexOf(" "),g=g.substring(0,h)+"...";h="";if("category"in a){for(f=0;f<a.category.length;f++)h+="<a href=\"javascript:filterPosts('"+a.category[f].term+"');\" title=\"Click here to select all posts with label '"+a.category[f].term+"'\">"+a.category[f].term+"</a>, ";a=h.lastIndexOf(",");-1!=a&&(h=h.substring(0, a))}postTitle.push(e);postDate.push(k);postUrl.push(l);postSum.push(g);postLabels.push(h)}}totalEntires==totalPosts&&(tocLoaded=!0,showToc());sortPosts(sortBy);tocLoaded=!0}function filterPosts(c){postFilter=c;displayToc(postFilter)}function allPosts(){postFilter="";displayToc(postFilter)} function sortPosts(c){function d(a,b){var c=postTitle[a];postTitle[a]=postTitle[b];postTitle[b]=c;c=postDate[a];postDate[a]=postDate[b];postDate[b]=c;c=postUrl[a];postUrl[a]=postUrl[b];postUrl[b]=c;c=postSum[a];postSum[a]=postSum[b];postSum[b]=c;c=postLabels[a];postLabels[a]=postLabels[b];postLabels[b]=c}for(var b=0;b<postTitle.length-1;b++)for(var a=b+1;a<postTitle.length;a++)"titleasc"==c&&postTitle[b]>postTitle[a]&&d(b,a),"titledesc"==c&&postTitle[b]<postTitle[a]&&d(b,a),"dateoldest"==c&&postDate[b]> postDate[a]&&d(b,a),"datenewest"==c&&postDate[b]<postDate[a]&&d(b,a)} function displayToc(c){var d=0,b,a="Click to sort by title",e="Click to sort by date",k="";"titleasc"==sortBy&&(a+=" (descending)",e+=" (newest first)");"titledesc"==sortBy&&(a+=" (ascending)",e+=" (newest first)");"dateoldest"==sortBy&&(a+=" (ascending)",e+=" (newest first)");"datenewest"==sortBy&&(a+=" (ascending)",e+=" (oldest first)");""!=postFilter&&(k="Click to show all posts");b="<table><tr>";b+='<td class="toc-header-col1">';b+='<a href="javascript:toggleTitleSort();" title="'+a+'">POST TITLE</a>'; b+="</td>";b+='<td class="toc-header-col2">';b+='<a href="javascript:toggleDateSort();" title="'+e+'">POST DATE</a>';b+="</td>";b+='<td class="toc-header-col3">';b+='<a href="javascript:allPosts();" title="'+k+'">LABELS</a>';b+="</td>";b+="</tr>";for(a=0;a<postTitle.length;a++)""==c?(b+='<tr><td class="toc-entry-col1"><a href="'+postUrl[a]+'" title="'+postSum[a]+'">'+postTitle[a]+'</a></td><td class="toc-entry-col2">'+postDate[a]+'</td><td class="toc-entry-col3">'+postLabels[a]+"</td></tr>",d++): (z=postLabels[a].lastIndexOf(c),-1!=z&&(b+='<tr><td class="toc-entry-col1"><a href="'+postUrl[a]+'" title="'+postSum[a]+'">'+postTitle[a]+'</a></td><td class="toc-entry-col2">'+postDate[a]+'</td><td class="toc-entry-col3">'+postLabels[a]+"</td></tr>",d++));b+="</table>";c=d==postTitle.length?'<div class="toc-note">Displaying all '+postTitle.length+" posts<br/></div>":'<div class="toc-note">Displaying '+d+" posts labeled '"+(postFilter+"' of "+postTitle.length+" posts total<br/></div>");tocdiv.innerHTML= c+b}function toggleTitleSort(){sortBy="titleasc"==sortBy?"titledesc":"titleasc";sortPosts(sortBy);displayToc(postFilter)}function toggleDateSort(){sortBy="datenewest"==sortBy?"dateoldest":"datenewest";sortPosts(sortBy);displayToc(postFilter)}function showToc(){tocLoaded?(displayToc(postFilter),document.getElementById("toclink")):alert("Just wait... TOC is loading")} function hideToc(){document.getElementById("toc").innerHTML="";document.getElementById("toclink").innerHTML='<a href="#" onclick="scroll(0,0); showToc(); Effect.toggle(\'toc-result\',\'blind\');">\u00bb Show Table of Contents</a> <img src="http://chenkaie.blog.googlepages.com/new_1.gif"/>'};
//]]>
</script>
<script src='/feeds/posts/summary?alt=json-in-script&amp;max-results=500&amp;callback=loadtoc' type='text/javascript'></script>
</div>
</div>
Step 4: Don't click on Compose Besides code will not work.
Step 5: Click on Options from right side and tick on Don't allow from Readers comments.
Step 6: And now click on Publish.
How to Create a Smart Sitemap in Blogger How to Create a Smart Sitemap in Blogger Reviewed by Wanem Club on October 15, 2017 Rating: 5
Powered by Blogger.