Main
Index
Search
Posts
Who's
Online
Log
In

Home: Discontinued/Classic Products: Article Manager 1:
Web Feed Generator Problem

 

 


aerosurfer
User

Aug 23, 2006, 2:44 AM

Post #1 of 3 (1332 views)
Shortcut
Web Feed Generator Problem Can't Post

Does anyone know exactly how to make the headlines using the web feed generator appear one after the other instead of being separated by a blank line. I'm trying to make just the headlines appear and I've tried various changes to the first 11 lines of the syndicate.js file (re-publishing each time) without success.

I've a feeling the changes need to be made in the first 11 lines of the syndicate.js file

<!-- templatecell : img_caption -->
<table border=0 cellspacing=2 cellpadding=0 width=$img_width$ align=$img_align$>
<tr><td><img src="$img_url$" height="$img_height$" width="$img_width$" border=1></td></tr>
<tr><td><font face="Arial,Helvetica,sans-serif" size="2">$img_caption$</font></td></tr>
</table>
<!-- /templatecell : img_caption -->
<!-- templatecell : img_nocaption -->
<table border=0 cellspacing=2 cellpadding=0 width=$img_width$ align=$img_align$>
<tr><td><img src="$img_url$" height="$img_height$" width="$img_width$" border=1></td></tr>
</table>
<!-- /templatecell : img_nocaption -->


ChetW
Staff


Aug 24, 2006, 10:39 AM

Post #2 of 3 (1313 views)
Shortcut
Re: [aerosurfer] Web Feed Generator Problem [In reply to] Can't Post

Hi aerosurfer,

Thanks for the post!

To remove this gap from the headlines you are actually going to want to go down to line 163 of the syndicate.js file, the line of code you are looking for is this:


Code
document.write('<br></td></tr>\n');


Change the above code to this:


Code
document.write('</td></tr>\n');


Give this a try aerosurfer and if you have any other questions please don't hesitate to ask!
Cheers,
Chet Woodside - Product Specialist
support@interactivetools.com

[hr][i][url "http://www.interactivetools.com/consulting/"][b]Hire me![/b][/url]
Save time by getting our experts to help with your project. Template changes, advanced features, full integration, whatever you need. Whether you need one hour or fifty, get it done fast with [url "http://www.interactivetools.com/consulting/"][b]Priority Consulting[/b][/url].[/i]


aerosurfer
User

Aug 25, 2006, 3:03 AM

Post #3 of 3 (1304 views)
Shortcut
Re: [ChetW] Web Feed Generator Problem [In reply to] Can't Post

Thanks Chet,



Works a treat !