forum.coppermine-gallery.net

Support => cpg1.5.x Support => cpg1.5 themes (visuals) => Topic started by: Αndré on January 13, 2014, 05:01:01 pm

Title: Different style for meta albums on main page
Post by: Αndré on January 13, 2014, 05:01:01 pm
Due to the site outage (http://forum.coppermine-gallery.net/index.php/topic,77004.0.html) we lost an already solved thread which could be useful for other people, that's why I post it again.

It's currently still available in Google's cache: http://webcache.googleusercontent.com/search?q=cache:-MJ11ixwVKsJ:forum.coppermine-gallery.net/index.php%3Ftopic%3D77000.0+&cd=1&hl=de&ct=clnk&gl=de&client=firefox-a


Question:
Quote from: allvip
I want the thumbnails.php with albums thumbs,random thumbs etc to look normal (attachment 1 and 2) but random,lastup and lasthits from index.php and category pages (attachment 3,4,5) to have a difrent style like background color and most important smaller thumbnails (with css: image and the div that contains the image - width 80px).

Is it possible to wrapp the meta albums from index.php in a div without affecting even the thumbnails pages from attachment 1 and 2?

I'm making a new theme for my gallery that has divs no tables so changing the image div width with css will be possible.


Solution:
Quote from: Αndré
Copy the function theme_display_thumbnails from themes/sample/theme.php to your theme's theme.php file, if it doesn't exist.

Find
Code: [Select]
CPGPluginAPI::action('theme_thumbnails_wrapper_start', null);and below, add
Code: [Select]
    global $CPG_PHP_SELF;
    if ($CPG_PHP_SELF == 'index.php') {
        echo '<div class="your_class_here">';
    }

find
Code: [Select]
CPGPluginAPI::action('theme_thumbnails_wrapper_end', null);and above, add
Code: [Select]
    if ($CPG_PHP_SELF == 'index.php') {
        echo '</div>';
    }