Hi,
I have a problem with top margin and bottom margin of the slideshow. In the normal view, there isn't any problem with the top margin and bottom margin. But when I start using the slideshow, it creates a huge margin on top and bottom, which push the picture very far down. I have to move the page down in order to see the slide show. Can anyone help me? Thanks!
I haven't looked into this very deeply, but I guess you could play with the setting to be found in displayimage.php - look for
Quote$params = array('{CELL_HEIGHT}' => $CONFIG['picture_width'] + 100,
GauGau
Look/search for this line (think it's line 451 in cpg 1.2)
Quote$params = array('{CELL_HEIGHT}' => $CONFIG['picture_width'] + 100,
and replace it with:
Quote$params = array('{CELL_HEIGHT}' => $CONFIG['picture_height'],
Now it makes te cell height as high as the height of the shown picture.
Thank you gaugau and Widi! Its work!!