<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>How to in bloggers™</title><description></description><managingEditor>noreply@blogger.com (Alexandra Banica)</managingEditor><pubDate>Fri, 1 Nov 2024 04:45:55 -0700</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">3</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>http://how-to-in-bloggers.blogspot.com/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:subtitle/><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><title>How to add favicon icon to blogger</title><link>http://how-to-in-bloggers.blogspot.com/2011/03/add-favicon-icon-to-blogger-url.html</link><category>Blog URL</category><category>Blogger Instructions</category><category>Blogger Tips</category><category>Blogger Tricks</category><category>Change Template</category><category>CSS</category><category>Customize</category><category>Favicon</category><category>How to add favicon icon to blogger URL</category><category>how to add favicon in blogger</category><category>Template</category><category>URL icon</category><author>noreply@blogger.com (Alexandra Banica)</author><pubDate>Tue, 15 Mar 2011 08:48:00 -0700</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-982735625474981347.post-557735543259011021</guid><description>Go back to your Blogger dashboard and under the Template tab, go to “Edit HTML”. Find this code:-&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;table border="1" cellpadding="2" style="width: 344px;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;th scope="col" width="332"&gt;&lt;div align="left"&gt;&amp;lt;title&amp;gt;&amp;lt;data:blog.pageTitle/&amp;gt;&amp;lt;/title&amp;gt;&lt;/div&gt;&lt;/th&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;span style="font-weight: 700;"&gt;Update:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Copy and insert the following code &lt;span style="color: #993399; font-weight: 700;"&gt;below&lt;/span&gt; the line:-&lt;br /&gt;
&lt;br /&gt;
&lt;table border="1" cellpadding="2" style="width: 344px;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;th scope="col" width="332"&gt;&lt;div align="left"&gt;&amp;lt;link  href='&lt;span style="color: red;"&gt;URL of your icon file&lt;/span&gt;' rel='shortcut icon'  type='image/vnd.microsoft.icon'/&amp;gt;&lt;/div&gt;&lt;/th&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;br /&gt;
Inserting this will also work but the former is preferred:-&lt;br /&gt;
&lt;br /&gt;
&lt;table border="1" cellpadding="2" style="width: 344px;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;th scope="col" width="332"&gt;&lt;div align="left"&gt;&amp;lt;link  href='&lt;span style="color: red;"&gt;URL of your icon file&lt;/span&gt;' rel='shortcut icon'  type='image/x-icon'/&amp;gt;&lt;/div&gt;&lt;/th&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
Remember to type in the “&lt;span style="color: red; font-weight: 700;"&gt;URL of your icon file&lt;/span&gt;”.&lt;br /&gt;
&lt;br /&gt;
Save the template.  When you refresh your blog site, you should see your nice little Favicon next to the blog address.&lt;br /&gt;
&lt;br /&gt;
&lt;div style="color: #073763;"&gt;&lt;span style="font-weight: 700;"&gt;Other image types&lt;/span&gt;&lt;/div&gt;&lt;div style="color: #073763;"&gt;&lt;br /&gt;
&lt;/div&gt;The .ico image format has been used by many but you can also create an image under the .png or .gif format.  Ensure that the size of the image is either 16x16 pixels or 32x32 pixels. &lt;br /&gt;
&lt;br /&gt;
If you have a PNG format image, the link to insert is:-&lt;br /&gt;
&lt;br /&gt;
&lt;table border="1" cellpadding="2" style="width: 344px;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;th scope="col" width="332"&gt;&lt;div align="left"&gt;&amp;lt;link  href='&lt;span style="color: red;"&gt;URL of your icon file&lt;/span&gt;' rel='shortcut icon' type='image/png'/&amp;gt;&lt;/div&gt;&lt;/th&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
If it is a GIF format image, the link is:-&lt;br /&gt;
&lt;br /&gt;
&lt;table border="1" cellpadding="2" style="width: 344px;"&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;th scope="col" width="332"&gt;&lt;div align="left"&gt;&amp;lt;link  href='&lt;span style="color: red;"&gt;URL of your icon file&lt;/span&gt;' rel='shortcut icon' type='image/gif'/&amp;gt;&lt;/div&gt;&lt;/th&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;
&lt;div style="color: #073763;"&gt;&lt;span style="font-weight: 700;"&gt;External Domain&lt;/span&gt;&lt;br /&gt;
&lt;/div&gt;For those who have hosted sites in external domains, insert the link in the root directory as well.  Otherwise, you can upload the file into the root directory and name it favicon.ico&lt;br /&gt;
&lt;br /&gt;
As an example, if your domain name is www.domain.com, the URL of the favicon will be www.domain.com/favicon.ico&lt;br /&gt;
&lt;br /&gt;
This method is not preferred but a number of browser versions are able to process the icon.  Since we do not have external domains to try out this alternative, you may want to see if it works for you.&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-size: 85%;"&gt;© &lt;a href="http://how-to-in-bloggers.blogspot.com/"&gt;How to in bloggers™ &lt;/a&gt;&lt;/span&gt;</description></item><item><title>How to remove the attribtion gadget</title><link>http://how-to-in-bloggers.blogspot.com/2011/03/how-to-remove-attribtion-gadget.html</link><category>delete attribution blogger</category><category>delete attribution blogspot</category><category>how to remove Attribution blogger</category><category>remove attribution from blogger footer</category><category>remove blog footer</category><category>remove footer from blogger</category><author>noreply@blogger.com (Alexandra Banica)</author><pubDate>Sat, 12 Mar 2011 06:25:00 -0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-982735625474981347.post-4044717571721040982</guid><description>1&amp;nbsp; Go to Design &amp;gt; Edit HTML.&lt;br /&gt;
&lt;br /&gt;
2&amp;nbsp; Take a &lt;b&gt;backup&lt;/b&gt;:&lt;br /&gt;
Download a copy of your template:&amp;nbsp; this is a backup - save it somewhere safe, in case things go wrong.&lt;br /&gt;
&lt;br /&gt;
3&amp;nbsp; &lt;b&gt;Find&lt;/b&gt; this section in the template:&lt;br /&gt;
&lt;blockquote&gt;&amp;lt;!-- outside of the include in order to lock Attribution widget &lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;b:section class='foot' id='footer-3' showaddelement='no'&amp;gt;&lt;br /&gt;
&amp;lt;b:widget id='Attribution1' locked='true' title='' type='Attribution'/&amp;gt;&lt;br /&gt;
&amp;lt;/b:section&amp;gt; --&amp;gt;&lt;/blockquote&gt;&lt;div style="color: #3d85c6;"&gt;&lt;b&gt;The simplest way to locate it is to use your browser's search  function (Edit &amp;gt; Find in Firefox, similar commands in other tools),  and look for "lock Attrib".&lt;/b&gt;&lt;/div&gt;&lt;br /&gt;
4&amp;nbsp; Change&lt;br /&gt;
&lt;blockquote&gt;&lt;b&gt;locked = 'true'&lt;/b&gt;&amp;nbsp;&lt;/blockquote&gt;to&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; locked = 'false'&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
5&amp;nbsp; &lt;b&gt;Preview&lt;/b&gt; the template change, to check that everything else is  ok.&amp;nbsp; If not, fix the problem.&amp;nbsp; (The attribution will still be showing at  this stage.)&lt;br /&gt;
&lt;br /&gt;
6&amp;nbsp; Click &lt;b&gt;Save Template&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
7&amp;nbsp; From the Design &amp;gt; Page Elements tab, &lt;b&gt;edit the attribution gadget&lt;/b&gt;.&amp;nbsp; It will now have a &lt;b&gt;Remove button&lt;/b&gt; on the left hand side.&amp;nbsp; Click this, to remove the gadget from your blog.&lt;br /&gt;
&lt;br /&gt;
8&amp;nbsp; If you want to , &lt;b&gt;add an an alternative&lt;/b&gt; attribution notice.&lt;br /&gt;
&lt;a href="http://www.blogger.com/post-edit.g?blogID=982735625474981347&amp;amp;postID=4044717571721040982" name="more"&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.blogger.com/post-edit.g?blogID=982735625474981347&amp;amp;postID=6841559344522750844" name="more"&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div style="color: #0b5394; text-align: center;"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;WARNING&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size: large;"&gt;:&lt;/span&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div style="text-align: center;"&gt;&lt;hr /&gt;I have not checked the Blogger Terms and Conditions to find out whether &lt;br /&gt;
you are allowed to remove the Attribution. &amp;nbsp; Even if they don't mention &lt;br /&gt;
it today, a requirement to keep the statement could be added tomorrow. &lt;br /&gt;
This advice does not mean that I, or Google/Blogger, are saying that &lt;br /&gt;
you should/can/may/must remove the attribution statement. &lt;br /&gt;
&lt;hr /&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;span style="font-size: 85%;"&gt;© &lt;a href="http://how-to-in-bloggers.blogspot.com/"&gt;How to in bloggers™&amp;nbsp; &lt;/a&gt;&lt;/span&gt;</description></item><item><title>How To Remove Blogger Footer Links</title><link>http://how-to-in-bloggers.blogspot.com/2011/03/how-to-remove-blogger-blogspot-footer.html</link><category>delete attribution blogger</category><category>delete attribution blogspot</category><category>how to remove Attribution blogger</category><category>remove attribution from blogger footer</category><category>remove blog footer</category><category>remove footer from blogger</category><author>noreply@blogger.com (Alexandra Banica)</author><pubDate>Thu, 3 Mar 2011 05:37:00 -0800</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-982735625474981347.post-6841559344522750844</guid><description>Tips on how to remove the new version blogspot footer links /remove  blogger footer attribution. How to change or delete (remove) the  attribution line that Google has added to add blogs that have a Designer  template.&lt;br /&gt;
The blogger.com has become more functional and powerful than before,  they have lost a lot users, because more and more people choose  wordpress as their blogging platform, but now, the blogspot had changed a  lot, especially the templates.&lt;br /&gt;
But, as you know, google have added footer attribution widget, which  contain some links, if you are just blogging for fun, it doesn’t matter  has the links or not. But a lot people do not like the blogspot footer  links, how to remove??&lt;br /&gt;
The &lt;b&gt;blogger footer Attribution gadget&lt;/b&gt; also has a  field “Copyright (optional)” – whatever you put into this phrase is  shown at the beginning of the sentence.  It will take some simple HTML  commands – as in the picture – but I have a feeling that adding an  entire Creative Commons statement won’t work.&lt;br /&gt;
The blogger footer Attribution gadget contains:&lt;br /&gt;
1. The template designer website links;&lt;br /&gt;
2. The copyright owner of the background photo you’re using on blogger;&lt;br /&gt;
3. Blogger for “powering” your blog.&lt;br /&gt;
4. Your own links.&lt;br /&gt;
&lt;br /&gt;
The &lt;b&gt;blogspot footer links&lt;/b&gt;, you can keep the bloger  link, and most of us do not want to keep other links, if you want to  remove the template’s designers link, it is easy! Just change the  templates designer’s description in the css.&lt;br /&gt;
&lt;br /&gt;
The links before change:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnL-cE95S8E7UUJqE_L0nmrBu9xDaXJLh-Usn1xu1jJ2Li9RPGbiUQsjESeg8OlCVwr4oRprotatit_pb0sDirnwimSmBdrVQbpJN8NgDzRPIe7QSgXyJmI2XN21dKPYiet-5bZFhyphenhyphenDCZL/s1600/before.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnL-cE95S8E7UUJqE_L0nmrBu9xDaXJLh-Usn1xu1jJ2Li9RPGbiUQsjESeg8OlCVwr4oRprotatit_pb0sDirnwimSmBdrVQbpJN8NgDzRPIe7QSgXyJmI2XN21dKPYiet-5bZFhyphenhyphenDCZL/s1600/before.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
The orignal code before get changed:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmC_6L11CSDup39-I50pqi0HRL5NPhyphenhyphen21mh1jM7TGytqe9K7lJNiCLEqC7YtZkGTiaZFWpnJLsj8ZV8-8LI335-1Tdr0i0Gm_nu5IacXWx8_KDH7evk3rpfT94qqOHyviA5k2s83WK3Wt-/s1600/before.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhmC_6L11CSDup39-I50pqi0HRL5NPhyphenhyphen21mh1jM7TGytqe9K7lJNiCLEqC7YtZkGTiaZFWpnJLsj8ZV8-8LI335-1Tdr0i0Gm_nu5IacXWx8_KDH7evk3rpfT94qqOHyviA5k2s83WK3Wt-/s1600/before.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
————————–How to change————————–&lt;br /&gt;
Just change like this, add any links as you like, and the author:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7ANhjiHsNdT3Wb-3y5xtWs_tdFJJgk5eJWbKAUJ6M_8OTEHBOi_y6ocmWFWSuKXcGG72kHp4mZkLhDUm9H1-gB_9fEOlNiFdR04sGNw7r4oCDRRmJJME3ATTk-L8LEpuzhvwA_x6HVZRe/s1600/before.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj7ANhjiHsNdT3Wb-3y5xtWs_tdFJJgk5eJWbKAUJ6M_8OTEHBOi_y6ocmWFWSuKXcGG72kHp4mZkLhDUm9H1-gB_9fEOlNiFdR04sGNw7r4oCDRRmJJME3ATTk-L8LEpuzhvwA_x6HVZRe/s1600/before.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
After your change, it should like this:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjor9ldyDbRErQujDEMlxNSeOf3br6J6sVzjoHoBGHlOcTOMD6LJO8x6HZE70xY0cKxjVIpbNxUg9LL-fi7eQkvrrLL2yXsovdKFSMgXHFDcranEchx_LTZ8eX85Cpj-x2_4mYERd7Qq0x6/s1600/llll+copy.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjor9ldyDbRErQujDEMlxNSeOf3br6J6sVzjoHoBGHlOcTOMD6LJO8x6HZE70xY0cKxjVIpbNxUg9LL-fi7eQkvrrLL2yXsovdKFSMgXHFDcranEchx_LTZ8eX85Cpj-x2_4mYERd7Qq0x6/s1600/llll+copy.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;If you do not like any links, you can remove like this:&lt;b&gt;&amp;nbsp;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt; &lt;/b&gt;&lt;br /&gt;
&lt;b&gt;WARNING&lt;/b&gt;:&lt;br /&gt;
&lt;blockquote&gt;&lt;div&gt;&lt;hr /&gt;I have not checked the Blogger Terms and Conditions to find out  whether  you are allowed to remove the Attribution. &amp;nbsp; Even if they don’t  mention  it today, a requirement to keep the statement could be added  tomorrow. &amp;nbsp;  This advice does not mean that I, or Google/Blogger, are  saying that  you should/can/may/must remove the attribution statement. &lt;br /&gt;
&lt;hr /&gt;&lt;/div&gt;&lt;/blockquote&gt;1&amp;nbsp; Go to Design &amp;gt; Edit HTML.&lt;br /&gt;
2&amp;nbsp; Take a &lt;b&gt;backup&lt;/b&gt;:&lt;br /&gt;
Download a copy of your template:&amp;nbsp; this is a backup – save it somewhere  safe, in case things go wrong.&lt;br /&gt;
3&amp;nbsp; Click &lt;b&gt;Expand Widgets&lt;/b&gt;, so you can see all the code&lt;br /&gt;
4&amp;nbsp; &lt;b&gt;Find&lt;/b&gt; this section in the template:&lt;br /&gt;
&lt;blockquote style="background-color: white; color: blue;"&gt;&lt;b&gt;&lt;span style="font-size: small;"&gt;&amp;lt;!– outside of the include in order to lock Attribution widget  –&amp;gt;&lt;br /&gt;
&amp;lt;b:section class=’foot’ id=’footer-3′ showaddelement=’no’&amp;gt;&lt;br /&gt;
&amp;lt;b:widget id=’Attribution2′ locked=’true’ title=”  type=’Attribution’&amp;gt;&lt;br /&gt;
&amp;lt;b:includable id=’main’&amp;gt;&lt;br /&gt;
&amp;lt;div class=’widget-content’ style=’text-align: center;’&amp;gt;&lt;br /&gt;
&amp;lt;b:if cond=’data:attribution != &amp;amp;quot;&amp;amp;quot;’&amp;gt;&lt;br /&gt;
&amp;lt;data:attribution/&amp;gt;&lt;br /&gt;
&amp;lt;/b:if&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style="font-size: small;"&gt;&amp;lt;b:include name=’quickedit’/&amp;gt;&lt;br /&gt;
&amp;lt;/b:includable&amp;gt;&lt;br /&gt;
&amp;lt;/b:widget&amp;gt;&lt;br /&gt;
&amp;lt;/b:section&amp;gt;&lt;/span&gt;&lt;/b&gt;&lt;/blockquote&gt;4&amp;nbsp; &lt;b&gt;Comment-out&lt;/b&gt; the code that displays the  Attribution gadget, by  putting it inside these characters&amp;nbsp; &amp;lt;!– &amp;nbsp;  –&amp;gt; &amp;nbsp;&amp;nbsp; so it ends up  looking like this&lt;br /&gt;
&lt;blockquote style="background-color: white; color: blue;"&gt;&lt;b&gt;&amp;lt;!– outside of the include in order to lock Attribution widget  –&amp;gt;&lt;br /&gt;
&amp;lt;!–  &amp;lt;b:section class=’foot’ id=’footer-3′  showaddelement=’no’&amp;gt;&lt;br /&gt;
&amp;lt;b:widget id=’Attribution2′ locked=’true’ title=”  type=’Attribution’&amp;gt;&lt;br /&gt;
&amp;lt;b:includable id=’main’&amp;gt;&lt;br /&gt;
&amp;lt;div class=’widget-content’ style=’text-align: center;’&amp;gt;&lt;br /&gt;
&amp;lt;b:if cond=’data:attribution != &amp;amp;quot;&amp;amp;quot;’&amp;gt;&lt;br /&gt;
&amp;lt;data:attribution/&amp;gt;&lt;br /&gt;
&amp;lt;/b:if&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/b&gt; &lt;br /&gt;
&lt;b&gt;&amp;lt;b:include name=’quickedit’/&amp;gt;&lt;br /&gt;
&amp;lt;/b:includable&amp;gt;&lt;br /&gt;
&amp;lt;/b:widget&amp;gt;&lt;br /&gt;
&amp;lt;/b:section&amp;gt;&lt;br /&gt;
–&amp;gt;&lt;/b&gt;   &lt;/blockquote&gt;5&amp;nbsp; &lt;b&gt;Preview&lt;/b&gt; the template change, to check that everything is ok.&amp;nbsp;  If not, fix the problem&lt;br /&gt;
6&amp;nbsp; Click &lt;b&gt;Save Template&lt;/b&gt;&lt;br /&gt;
7&amp;nbsp; As the template tries to save, you will get a warning message:&lt;br /&gt;
&lt;blockquote&gt;&lt;h4&gt;&lt;i&gt;&lt;b&gt;Warning:&lt;/b&gt; Your new template does not include the following  widgets:&lt;/i&gt;&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;&lt;i&gt;Attribution3&lt;/i&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;i&gt;Would you like to keep these widgets on your blog or delete them?&lt;br /&gt;
Deleting widgets cannot be undone.&lt;/i&gt;&lt;/blockquote&gt;Click &lt;b&gt;Keep Widgets&lt;/b&gt;:&amp;nbsp; This will leave an attribution  Gadget in the  set of Widgets that your blog has data about, even though  it’s not  actually showing it on the screen.&lt;br /&gt;
Why not try wordpress, the wordpress is good for seo and more and  more people choose wordpress to build blog and websites! You can find a  lot quality wordpress themes on the internet, you can try studiopress  themes and use studiopress discount code to save, also we have ithemes coupon  for you. The shopperpress coupon  can save you 30% if you want to get a store wordpress theme, the wp  robot 3.0, which is a powerful autoblogging plugin for wordpress, use wp robot discount coupon code to save.&lt;br /&gt;
&lt;a href="http://www.blogger.com/post-edit.g?blogID=982735625474981347&amp;amp;postID=6841559344522750844" name="more"&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div style="color: #0b5394; text-align: center;"&gt;&lt;span style="font-size: large;"&gt;&lt;b&gt;WARNING&lt;/b&gt;&lt;/span&gt;&lt;span style="font-size: large;"&gt;:&lt;/span&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div style="text-align: center;"&gt;&lt;hr /&gt;I have not checked the Blogger Terms and Conditions to find out whether &lt;br /&gt;
you are allowed to remove the Attribution. &amp;nbsp; Even if they don't mention &lt;br /&gt;
it today, a requirement to keep the statement could be added tomorrow. &lt;br /&gt;
This advice does not mean that I, or Google/Blogger, are saying that &lt;br /&gt;
you should/can/may/must remove the attribution statement. &lt;br /&gt;
&lt;hr /&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;span style="font-size: 85%;"&gt;© &lt;a href="http://how-to-in-bloggers.blogspot.com/"&gt;How to in bloggers™&amp;nbsp; &lt;/a&gt;&lt;/span&gt;</description><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" height="72" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgnL-cE95S8E7UUJqE_L0nmrBu9xDaXJLh-Usn1xu1jJ2Li9RPGbiUQsjESeg8OlCVwr4oRprotatit_pb0sDirnwimSmBdrVQbpJN8NgDzRPIe7QSgXyJmI2XN21dKPYiet-5bZFhyphenhyphenDCZL/s72-c/before.jpg" width="72"/><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">36</thr:total></item></channel></rss>