Hi,
I'm using feedControl and it displays correctly with title, link, publisher, date and the teaser.
I removed the publisher, and would like to change the date display which is now from "- Aug 04, 2012" to "On Aug 04,2012". Could you please help me on this.
My code is now.
<style type="text/css">
#feedControl .gfc-title {font:bold 11pt arial; padding:10px;}
#feedControl .gf-author {
display : none;}
</style>
<script type="text/javascript" src="
https://www.google.com/jsapi"></script>
<script type="text/javascript">
google.load("feeds", "1");
function OnLoad() {
var feedControl = new google.feeds.FeedControl();
feedControl.addFeed("
http://feeds.feedburner.com/IDMGOVBlog");
feedControl.draw(document.getElementById("feedControl"));
}
google.setOnLoadCallback(OnLoad);
</script>
<div id="feedControl"></div>
Thanks in Advance!