Feedburner lets you to display your recent posts with BuzzBoost widget.By default the widget includes a credit at footer that says "Headlines By Feedburner".When I expand the javascript link I found a CSS ID like creditfooter.By using
display:none;
property we will simply remove the feedburner credit link permanently.creditfooter
the I started applying my tricks and finally I succeed to remove feedburner logo with using display:none;
property.For more see the image of java script code below.How To Apply This Hack?
- Go to Blogger Dashboard > Design > Page/Edit Layout.
- Click on EDIT LINK at the bottom of your Feedburner widget tab.
- Add below code just BEFORE your present code.
<style>
/* BuzzBoost Logo Remover Trick By HB */
div #creditfooter{
display: none;
}
</style>
Result
Now refresh your blog you will notice that FeedBurner logo has disappeared.
Before
After
If you like this hack then share it with your friends.Also,feel free to ask any queries about this hack....
This is i found much interesting. my feedburner logo gone now on SoftwareDon
ReplyDelete