Space between photo & subtitle Space between photo & subtitle
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Space between photo & subtitle

Started by enwhysee, December 14, 2007, 06:56:55 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

enwhysee

For some reason there is a space between my photo and subtitle link when I view my page and I'd like to remove it. It inserts 2 <br /> tag but I don't know how to get rid one so that the subtitle is directly under the photo. This is the code I use:


<?php
  
include "/home/content/x/x/x/xxxx/html/photos/cpmfetch/cpmfetch.php";
  
$objCpm = new cpm("/home/content/x/x/x/xxxx/html/photos/cpmfetch/cpmfetch_config.php");
  
$options = array('imagelink' => 'album''imagewidth' => '80''subtitle' => '%a''subtitlelink' => ""'alttag' => '%a'"imagestyle" => "photos");
  
$objCpm->cpm_viewLastUpdatedAlbumsFrom("",4,1,$options);
  
$objCpm->cpm_close();
?>