 |
? |
Author |
Message |
goallover
Joined: 25 May 2006
Posts: 3
|
Posted: Fri May 26, 2006 4:05 pm |

|
I have a page here which has a number of blog feeds inserted
http://www.basicmedia.co.uk/new/index3.shtml
The length of the entries for each post seems to differ ie.
one is this length
EBay said today that Yahoo will sell advertising on its auction site and also will use eBay's Paypal service to handle payments....
and one is this length
According to the New York Daily news financing for plastic surgery is becoming very big business. The market was worth non existent a few years ago, now it is worth $500 million and it could be worth $8 billion to...
Is there anyway to define the length so that they are all the same?
Thanks
Andy
|
|
|

|
 |
MacSupport
Joined: 24 Feb 2005
Posts: 2394
|
Posted: Fri May 26, 2006 4:31 pm |

|
goallover wrote: |
I have a page here which has a number of blog feeds inserted
http://www.basicmedia.co.uk/new/index3.shtml
The length of the entries for each post seems to differ ie.
one is this length
EBay said today that Yahoo will sell advertising on its auction site and also will use eBay's Paypal service to handle payments....
and one is this length
According to the New York Daily news financing for plastic surgery is becoming very big business. The market was worth non existent a few years ago, now it is worth $500 million and it could be worth $8 billion to...
Is there anyway to define the length so that they are all the same?
Thanks
Andy |
To copy from the top of rss2html.php
Code: |
//
// Since some feeds may have titles or descriptins in the feed or items that
// are longer then want fits in your HTML page it is possible to trim them
// with the following 4 variables.? A values of 0 (ZERO) displays the full
// length.
// CAUTION:? Do not limit a title or description that has HTML in it, the result
//? ? ? ? ? ?will not produce a valid HTML page.
$limitFeedTitleLength = 0;? ? ? ? // Not limited, in the URL as FeedTitleLength=
$limitFeedDescriptionLength = 0;? // Not limited, in the URL as FeedDescriptionL
ength=
$limitItemTitleLength = 0;? ? ? ? // Not limited, in the URL as ItemTitleLength=
$limitItemDescriptionLength = 0;? // Not limited, in the URL as ItemDescriptionL
ength=
|
Jim
|
|
|
 
|
 |
|
|
|