forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 cpmFetch by vuud => Topic started by: The_blue on February 22, 2010, 05:57:11 pm

Title: Can i tidy this up? (different shaped thumbs)
Post by: The_blue on February 22, 2010, 05:57:11 pm
Afternoon all.

This is my clubs website.
http://ccgi.theblue.plus.com/CSAC_website/

We are using CPMfetch to load thumbs onto the right.

I'm having trouble working out how to stop any portrait shaped thumbs being used. The issue is that the 5 pictures being pulled are causing the depth to change. 5 landscape ones wouldn't.

I'm using a basic code.

Code: [Select]
<center><?php
include_once "../cpg1414/cpmfetch/cpmfetch.php"
  
$objCpm = new cpm("../cpg1414/cpmfetch/cpmfetch_config.php");
  
$options = array('windowtarget' => '_parent');
  
$objCpm->cpm_viewRandomMediaFrom("cat=1,2,3,4,5",51$options);
  
$objCpm->cpm_close(); 
?>
</center>


Is it possible to make the thumbs an even size?
Title: Re: Can i tidy this up? (different shaped thumbs)
Post by: The_blue on February 22, 2010, 06:07:16 pm
You wouldn't belive it but 5 mins later and i've done it!

Code: [Select]
$options = array('windowtarget' => '_parent',"imageheight"=>"112","imagewidth"=>"150",);
Been looking for an answer for 2 days :(
Title: Re: Can i tidy this up? (different shaped thumbs)
Post by: Joachim Müller on February 23, 2010, 07:13:51 am
Thanks for returning and properly resolving your thread. I wish everybody would do that.