Friday, June 6, 2008

Remove Subscribe to : Posts (Atom)

To remove subscribe to : posts(Atom) from your blog First of all goto blogger Dashboard. After that goto blogger Layout Page . Now finally goto edit Html Page , Expand Widget templates and Search for the following lines of code.
<b:if cond='data:blog.pageType != &quot;item&quot;'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds'>
<b:include data='feedLinks' name='feedLinksBody'/>
</div>
</b:if>

Now replace the above code with the following lines of code.

<b:if cond='data:blog.pageType != &quot;item&quot;'> <!-- Blog feed links -->
<b:if cond='data:feedLinks'>
<div class='blog-feeds' style='display:none;'>
<b:include data='feedLinks' name='feedLinksBody'/>
</div>
</b:if>

3 comments: