Unfortunately, the code to override that - character is buried within the Feeds API, and there is no method to change it alone. You could, however, override the entire createHtml method of the FeedControl. Although it may be easier to just write your own version of the control altogether.
Jeremy R. Geerdes Generally Cool Guy Des Moines, IA For more information or a project quote: [email protected] If you're in the Des Moines, IA, area, check out Debra Heights Wesleyan Church! On Aug 8, 2012, at 4:17 PM, Nga wrote: > 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! > > -- > You received this message because you are subscribed to the Google > Groups "Google AJAX APIs" group. > To post to this group, send email to > [email protected] > To unsubscribe from this group, send email to > [email protected] > To view this message on the web, visit > https://groups.google.com/d/msg/google-ajax-search-api/-/NPffbKv_SKsJ > For more options, visit this group at > http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en -- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] To view this message on the web, visit http://groups.google.com/group/google-ajax-search-api?hl=en_US For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en
