Different style for album list on main page Different style for album list on main page
 

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

Different style for album list on main page

Started by Αndré, January 13, 2014, 05:14:47 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Αndré

Due to the site outage 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:kDjatP42uzIJ:forum.coppermine-gallery.net/index.php%3Ftopic%3D77006.0+&cd=2&hl=de&ct=clnk&gl=de&client=firefox-a


Question:
Quote from: allvipCan I wrapp the album list in a div only on index.php?


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

Find
starttable('100%');
and above, add
    global $CPG_PHP_SELF;
    if (!$cat) {
        echo '<div class="your_class_here">';
    }


find
endtable();
and below, add
    if (!$cat) {
        echo '</div>';
    }