• ed

    (@wesleysoccer)


    So my page set up is nexgen thumbnails and once they click on the thumbnail it will go to the image browser (which is what I want), The issue I’m having is my thumbnails are at the bottom of my page and when I click on one image it takes me to the top of my page and not to the bottom of the page (where the image browser is).

    http://bridal.muntzdesigns.com/nextgen-demo/

    Can someone tell me how to get the user back to the image browser after clicking on thumbnail without having to scroll back down the page…

    I did the following for once they make it down to the bottom of the page and click on image browser, which brings them back to the image browser but I need the top issue fixed…

    <?php if (!defined ('ABSPATH')) die ('No direct access allowed'); ?><?php if (!empty ($image)) : ?>
    
    <div class="ngg-imagebrowser" id="<?php echo $image->anchor ?>">
    	<span id="picgallery"/>
    	<div class="ngg-imagebrowser-nav">
    		<div class="back">
    			<a class="ngg-browser-prev" id="ngg-prev-<?php echo $image->previous_pid ?>" href="<?php echo $image->previous_image_link ?><?php echo $pid?>#picgallery">◄ <?php _e('Back', 'nggallery') ?></a>
    		</div>
    		<div class="next">
    			<a class="ngg-browser-next" id="ngg-next-<?php echo $image->next_pid ?>" href="<?php echo $image->next_image_link ?>#picgallery"><?php _e('Next', 'nggallery') ?> ►</a>
    		</div>
    		<div class="counter"><?php _e('Picture', 'nggallery') ?> <?php echo $image->number ?> <?php _e('of', 'nggallery')?> <?php echo $image->total ?></div>
    		<div class="ngg-imagebrowser-desc"><p><?php echo $image->description ?></p></div>
    	</div>
    <p><?php echo $image->alttext ?></p>
    	<div class="pic"><?php echo $image->href_link ?></div>
    
    </div>	
    
    <?php endif; ?>

    Thanks

  • The topic ‘Nextgen ImageBrowser Page Load’ is closed to new replies.