Make sure you are changing the values here:
Code:
// *** Get Parameters (check if defined, if not then fill with default values)
$nfcount = @$params->count ? $params->count : "0"; // Count : 0=All / count=limit to <count> latest newsflash (most recent)
$nfdelay = @$params->delay ? $params->delay : "6000"; // Delay : 1000 = 1 seconds
$nfheight = @$params->height ? $params->height : "150"; // Height : 200px
$nfborders = @$params->borders ? $params->borders: "0"; // borders: 1
$nfpadding = @$params->padding ? $params->padding: "0"; // padding: 2
$nfbgcolor = @$params->bgcolor? $params->bgcolor: ""; // bgcolor: #F0F0F0
All the values in the "" near the end of each line.
---------------------------------------
These:
Code:
Parameters :
--------
delay=10000 Wait for 10 seconds (default: 6000 => 6 seconds)
count=5 Display only the 5 most recent new products| 0 = displays all new products (default: 0 => All)
height=150 Set the minimum height of the display to avoid screen redesign...
borders=1 display a border around the new product (default : 0=no border)
padding=2 add a marge between border and text (default : 0=no padding)
bgcolor=#F0F0F0 display a border around the news product (default : empty=default background color
are just example to explain what the values do, but don't affect the code
Bookmarks