filmstrip current thumbnail (active thumbnail) filmstrip current thumbnail (active thumbnail)
 

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

filmstrip current thumbnail (active thumbnail)

Started by allvip, March 25, 2014, 08:23:24 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

allvip

I noticed this error in function filmstrip (sample theme and  and include/themes.inc.php).


if ($thumb['pos'] == $pos && !$superCage->get->keyExists('film_strip')) {
                $thumb['image'] = str_replace('class="image"', 'class="image middlethumb"', $thumb['image']);


should be(because the fimstrip thumbnails class is .strip_image not image):


if ($thumb['pos'] == $pos && !$superCage->get->keyExists('film_strip')) {
                $thumb['image'] = str_replace('class="strip_image"', 'class="strip_image middlethumb"', $thumb['image']);


the css rules already are in the style.css (curve theme):


/* pseudo-classes for middlethumb links */
a:link .middlethumb,a:visited .middlethumb,a:focus .middlethumb,a:hover .middlethumb,a:active .middlethumb{
    border: 2px solid blue;
}


allvip

Is no need to edit include/themes.inc.php.Everytime you update coppermine  include/themes.inc.php will be replaced.
You can copy <<<theme_display_film_strip>>> from themes/sample/theme.php(if is not in your theme.php),past it in your theme and aply the changes.

check .css file of your theme for the middlethumb class.If it does not exist add the middlethumb class and style it like you want.
The curve theme has the middlethumb class in style.css .

allvip

the active thumb has a blu border:



ΑndrĂ©

Committed suggested fix in SVN revision 8678. Will be part of cpg1.5.28. Thanks for the report.