Advanced search  

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

Pages: [1]   Go Down

Author Topic: filmstrip current thumbnail (active thumbnail)  (Read 10206 times)

0 Members and 1 Guest are viewing this topic.

allvip

  • Coppermine addict
  • ****
  • Country: 00
  • Offline Offline
  • Posts: 1362
filmstrip current thumbnail (active thumbnail)
« on: March 25, 2014, 08:23:24 pm »

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

Code: [Select]
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):

Code: [Select]
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):

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

Logged

allvip

  • Coppermine addict
  • ****
  • Country: 00
  • Offline Offline
  • Posts: 1362
Re: filmstrip current thumbnail (active thumbnail)
« Reply #1 on: March 25, 2014, 08:38:22 pm »

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 .
Logged

allvip

  • Coppermine addict
  • ****
  • Country: 00
  • Offline Offline
  • Posts: 1362
Re: filmstrip current thumbnail (active thumbnail)
« Reply #2 on: March 26, 2014, 04:13:36 pm »

the active thumb has a blu border:

Logged

allvip

  • Coppermine addict
  • ****
  • Country: 00
  • Offline Offline
  • Posts: 1362
Re: filmstrip current thumbnail (active thumbnail)
« Reply #3 on: March 26, 2014, 04:23:01 pm »

 Display picture title under filmstrip thumbnails:

http://forum.coppermine-gallery.net/index.php/topic,74799.0.html
Logged

Αndré

  • Administrator
  • Coppermine addict
  • *****
  • Country: de
  • Offline Offline
  • Gender: Male
  • Posts: 15764
Re: filmstrip current thumbnail (active thumbnail)
« Reply #4 on: March 27, 2014, 01:42:56 pm »

Committed suggested fix in SVN revision 8678. Will be part of cpg1.5.28. Thanks for the report.
Logged
Pages: [1]   Go Up
 

Page created in 0.019 seconds with 19 queries.