[Plugin: NextGEN Gallery] Problems with Hover on the album view
-
Hello,
I apologize in advance, I’m a newbie when it comes to PHP
I’ve made a few modifications to the album-extend view so that the counter is gone and the Title is moved to below the thumbnail of the album.
Now my problem is the hover. I’d like the title of the hover to change when I hover over the thumbnail but currently it only hovers when hovering over the title of the gallery.
Here’s my code:
<?php
/**
Template Page for the album overview (extended)Follow variables are useable :
a
$album : Contain information about the album
$galleries : Contain all galleries inside this album
$pagination : Contain the pagination contentYou can check the content when you insert the tag <?php var_dump($variable) ?>
If you would like to show the timestamp of the image ,you can use <?php echo $exif[‘created_timestamp’] ?>
**/
?>
<?php if (!defined (‘ABSPATH’)) die (‘No direct access allowed’); ?><?php if (!empty ($galleries)) : ?><div class=”ngg-albumoverview”>
<!– List of galleries –>
<?php foreach ($galleries as $gallery) : ?>
<span class=”link1″><div class=”ngg-album”>
<div class=”ngg-albumcontent”>
<div class=”ngg-thumbnail”>
pagelink ?>”><img class=”Thumb” alt=”<?php echo $gallery->title ?>” src=”<?php echo $gallery->previewurl ?>”/>
</div>
<div class=”ngg-albumtitle”>pagelink ?>”><?php echo $gallery->title ?></div><div class=”ngg-description”>
</div>
</div>
</div>
</span>
<?php endforeach; ?><!– Pagination –>
<?php echo $pagination ?></div>
<?php endif; ?>
The topic ‘[Plugin: NextGEN Gallery] Problems with Hover on the album view’ is closed to new replies.