How To Simple Become Blogger Blogroll Nofollow
To day tutorial about How To Simple Become Blogger Blogroll Nofollow. Follow this step :This is very important if you consider about your site SEO.Adding the nofollow attribute to your blogroll, would nullify any link juice with Google.If you like to add Nofollow attribute to your blogspot blogroll simply follow the steps below:
1.Login to your dashboard--> layout- -> Edit HTML
2.Click on "Expand Widget Templates"
3.Scroll down to till you see your Blogroll widget code :
(Note : You may also can find it by searching <b:widget id='BlogList )
Your Blogroll widget code will look like this:
<b:widget id='BlogList1' locked='false' title='Blogroll' type='BlogList'>
<b:includable id='main'>
<!-- only display title if it's non-empty -->
<b:if cond='data:title != ""'>
<div id='blog-list-title'>
<h2 class='title'><data:title/></h2>
</div>
</b:if>
<div class='widget-content'>
<div class='blog-list-container' expr:id='data:widget.instanceId + "_container"'>
<ul expr:id='data:widget.instanceId + "_blogs"'>
<b:loop values='data:items' var='item'>
<li expr:style='data:item.displayStyle'>
<div class='blog-icon'>
<b:if cond='data:showIcon == "true"'>
<input expr:value='data:item.blogIconUrl' type='hidden'/>
</b:if>
</div>
<div class='blog-content'>
<div class='blog-title'>
<a expr:href='data:item.blogUrl' target='_blank'>
<data:item.blogTitle/></a>
</div>
<div class='item-content'>
<b:if cond='data:showItemThumbnail == "true"'>
<b:if cond='data:item.itemThumbnail'>
<div class='item-thumbnail'>
<a expr:href='data:item.blogUrl' target='_blank'>
<img alt='' border='0' expr:height='data:item.itemThumbnail.height' expr:src='data:item.itemThumbnail.url' expr:width='data:item.itemThumbnail.width'/>
</a>
</div>
</b:if>
</b:if>
<b:if cond='data:showItemTitle == "true"'>
<span class='item-title'>
<b:if cond='data:item.itemUrl != ""'>
<a expr:href='data:item.itemUrl' target='_blank'>
<data:item.itemTitle/></a>
<b:else/>
<data:item.itemTitle/>
</b:if>
</span>
</b:if>
<b:if cond='data:showItemSnippet == "true"'>
<b:if cond='data:showItemTitle == "true"'>
-
</b:if>
<span class='item-snippet'>
<data:item.itemSnippet/>
</span>
</b:if>
<b:if cond='data:showTimePeriodSinceLastUpdate == "true"'>
<div class='item-time'>
<data:item.timePeriodSinceLastUpdate/>
</div>
</b:if>
</div>
</div>
<div style='clear: both;'/>
</li>
</b:loop>
</ul>
<b:if cond='data:numItemsToShow != 0'>
<b:if cond='data:totalItems > data:numItemsToShow'>
<div class='show-option'>
<span expr:id='data:widget.instanceId + "_show-n"' style='display: none;'>
<a href='javascript:void(0)' onclick='return false;'><data:showNText/></a>
</span>
<span expr:id='data:widget.instanceId + "_show-all"' style='margin-left: 5px;'>
<a href='javascript:void(0)' onclick='return false;'><data:showAllText/></a>
</span>
</div>
</b:if>
</b:if>
<b:include name='quickedit'/>
</div>
</div>
</b:includable>
</b:widget>
4.Now add rel='nofollow' to your blogroll widget code as the example below:<b:widget id='BlogList1' locked='false' title='Blogroll' type='BlogList'> <b:includable id='main'> <!-- only display title if it's non-empty --> <b:if cond='data:title != ""'> <div id='blog-list-title'> <h2 class='title'><data:title/></h2> </div> </b:if> <div class='widget-content'> <div class='blog-list-container' expr:id='data:widget.instanceId + "_container"'> <ul expr:id='data:widget.instanceId + "_blogs"'> <b:loop values='data:items' var='item'> <li expr:style='data:item.displayStyle'> <div class='blog-icon'> <b:if cond='data:showIcon == "true"'> <input expr:value='data:item.blogIconUrl' type='hidden'/> </b:if> </div> <div class='blog-content'> <div class='blog-title'> <a expr:href='data:item.blogUrl' rel='nofollow' target='_blank'> <data:item.blogTitle/></a> </div> <div class='item-content'> <b:if cond='data:showItemThumbnail == "true"'> <b:if cond='data:item.itemThumbnail'> <div class='item-thumbnail'> <a expr:href='data:item.blogUrl' rel='nofollow' target='_blank'> <img alt='' border='0' expr:height='data:item.itemThumbnail.height' expr:src='data:item.itemThumbnail.url' expr:width='data:item.itemThumbnail.width'/> </a> </div> </b:if> </b:if> <b:if cond='data:showItemTitle == "true"'> <span class='item-title'> <b:if cond='data:item.itemUrl != ""'> <a expr:href='data:item.itemUrl' rel='nofollow' target='_blank'> <data:item.itemTitle/></a> <b:else/> <data:item.itemTitle/> </b:if> </span> </b:if> <b:if cond='data:showItemSnippet == "true"'> <b:if cond='data:showItemTitle == "true"'> - </b:if> <span class='item-snippet'> <data:item.itemSnippet/> </span> </b:if> <b:if cond='data:showTimePeriodSinceLastUpdate == "true"'> <div class='item-time'> <data:item.timePeriodSinceLastUpdate/> </div> </b:if> </div> </div> <div style='clear: both;'/> </li> </b:loop> </ul> <b:if cond='data:numItemsToShow != 0'> <b:if cond='data:totalItems > data:numItemsToShow'> <div class='show-option'> <span expr:id='data:widget.instanceId + "_show-n"' style='display: none;'> <a href='javascript:void(0)' onclick='return false;'><data:showNText/></a> </span> <span expr:id='data:widget.instanceId + "_show-all"' style='margin-left: 5px;'> <a href='javascript:void(0)' onclick='return false;'><data:showAllText/></a> </span> </div> </b:if> </b:if> <b:include name='quickedit'/> </div> </div> </b:includable> </b:widget>5.Now save your template and you are done.
Anda Sudah Baca Yang Ini? :
Adsense
css
- Tips and Trick How To Compress CSS for Better Page Loading time
- Software Don't Panic
- How To Simple Submit Blogger Sitemap to MSN and Ask.com
- CSS Horizontal Navigation Menu For Bloggers/Websites
- How To Simple Insert Search Box in Header
- How To Add Google PR Checker Widget to blogger
- How To Compress CSS for Better Page Loading time
- How To Insert Search Box in Header
Tips And Trick
- Tips and Trick How To Compress CSS for Better Page Loading time
- Software Don't Panic
- Place the log in menu on the blog blogger
- Battlefield: Bad Company 2 - game trailer - Video From Meriam Si Jagur
- How To Simple Submit Blogger Sitemap to MSN and Ask.com
- CSS Horizontal Navigation Menu For Bloggers/Websites
- How To Simple Insert Search Box in Header
- How To Add Google PR Checker Widget to blogger
- How To Compress CSS for Better Page Loading time
- How To Insert Search Box in Header
- How To Open Links in New Window or New Tab
- How To Embed YOUTUBE video,movie in your blog
- How To Add MARQUEE TEXT
- Advanced Top Commentators Widget to Blogger
- How To Add a Calender to Blogger|Blogspot
- How To Add Status Bar Text with Nice Effect
- Google Up date in New year 2010 m
- How To Make Extra Money With Your Blogger Blog
- Top 5 Best Free AntiVirus Softwares!
- Add Multi-Color Effect For Your Links On Hover For Blogger Blogs
- How To Add Top Navigation menu (Bar) To Blogger (blogspot)
- Add Mp3 player ( Music BackGround ) for blogger, + 20 Different Styles.
- My Alexa oh My Alexa
- How to Be a Successful Work at Home Mom
news to day
- Development of nuclear power in Indonesia
- Indonesia reaches Uber Cup quarterfinals
- Jakarta Police issue warnings over planned rallies today
- Direct TV for Full Entertainment
- NASA's New Asteroid Mission Could Save the Planet
- Bangladesh to sign nuclear plant deal with Russia
- Tips and Trick How To Compress CSS for Better Page Loading time
- Software Don't Panic
- Japan coach Okada in the dark over squad for friendly
- Italy & Udinese Striker Antonio Di Natale Will Not Join Fiorentina - Agent
- Real Madrid seeks response after European exit
- Real Madrid European exit unravels Perez’s plan
- Place the log in menu on the blog blogger
- Battlefield: Bad Company 2 - game trailer - Video From Meriam Si Jagur
- Wait 28 petition Resignation Speech SBY
- Chile troops, police attack post-quake looting
- Toyota to add brake override on 3 more models
- Sweets and Diabetes
- Seniors Have Rewarding Sex Lives
- Tiger Woods to make public apology
- How To Simple Submit Blogger Sitemap to MSN and Ask.com
- New planet 'Earth-like "Abundant Water
- Google Up date in New year 2010 m
- How To Make Extra Money With Your Blogger Blog
all label content
- Development of nuclear power in Indonesia
- Indonesia reaches Uber Cup quarterfinals
- Jakarta Police issue warnings over planned rallies today
- Direct TV for Full Entertainment
- NASA's New Asteroid Mission Could Save the Planet
- Bangladesh to sign nuclear plant deal with Russia
- Tips and Trick How To Compress CSS for Better Page Loading time
- Software Don't Panic
- Japan coach Okada in the dark over squad for friendly
- Italy & Udinese Striker Antonio Di Natale Will Not Join Fiorentina - Agent
- Real Madrid seeks response after European exit
- Real Madrid European exit unravels Perez’s plan
- Want to See the Sword of the Prophet? See here !!!
- Place the log in menu on the blog blogger
- Battlefield: Bad Company 2 - game trailer - Video From Meriam Si Jagur
- Wait 28 petition Resignation Speech SBY
- Chile troops, police attack post-quake looting
- Toyota to add brake override on 3 more models
- World's Smallest Human
- Sweets and Diabetes
- Seniors Have Rewarding Sex Lives
- How To Simple Submit Blogger Sitemap to MSN and Ask.com
- CSS Horizontal Navigation Menu For Bloggers/Websites
- How To Simple Insert Search Box in Header
tutorial blog
- Tips and Trick How To Compress CSS for Better Page Loading time
- Software Don't Panic
- Place the log in menu on the blog blogger
- Battlefield: Bad Company 2 - game trailer - Video From Meriam Si Jagur
- How To Simple Submit Blogger Sitemap to MSN and Ask.com
- CSS Horizontal Navigation Menu For Bloggers/Websites
- How To Simple Insert Search Box in Header
- How To Add Google PR Checker Widget to blogger
- How To Compress CSS for Better Page Loading time
- How To Insert Search Box in Header
- How To Open Links in New Window or New Tab
- How To Embed YOUTUBE video,movie in your blog
- How To Add MARQUEE TEXT
- Advanced Top Commentators Widget to Blogger
- How To Add a Calender to Blogger|Blogspot
- How To Add Status Bar Text with Nice Effect
- Google Up date in New year 2010 m
- How To Make Extra Money With Your Blogger Blog
- Top 5 Best Free AntiVirus Softwares!
- Add Multi-Color Effect For Your Links On Hover For Blogger Blogs
- How To Add Top Navigation menu (Bar) To Blogger (blogspot)
- Add Mp3 player ( Music BackGround ) for blogger, + 20 Different Styles.
- My Alexa oh My Alexa
- What Happen Again Logo Google
0 komentar:
Post a Comment