Hi,
I am trying to force only 4 thumbnails to show by default.
I have changed my config file as per this instruction:
Displaying 4 thumbnails, You can do this by editing config.php and put this:
//4 on row
$thumbnails = array(array("width" => "125", "height" => "94"), array("width"
=> "270", "height" => "203"));
After
//3 on row
$thumbnails = array(array("width" => "175", "height" => "131"), array("width" => "270", "height" => "203"));
So that block should look like:
//2 on row
$thumbnails = array(array("width" => "270", "height" => "203"), array("width" => "270", "height" => "203"));
//3 on row
$thumbnails = array(array("width" => "175", "height" => "131"), array("width" => "270", "height" => "203"));
//4 on row
$thumbnails = array(array("width" => "125", "height" => "94"), array("width"
=> "270", "height" => "203"));
Now this has increased the number of thumbs. but it displays 5, or indeed displays more and more depending on how wide the content area width is set to.
Any help here would be greatly appreciated.
Thanks in advance



