Title: [Plugin: NextGEN Scroll Gallery] Scroll Gallery Caption
Last modified: August 20, 2016

---

# [Plugin: NextGEN Scroll Gallery] Scroll Gallery Caption

 *  Resolved [galbu89](https://wordpress.org/support/users/galbu89/)
 * (@galbu89)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/)
 * Hi,
    I’ve installed NextGen Gallery + NextGen Scroll Gallery Plugin on my WordPress
   website. I customized the style of the gallery and when I flagged ‘useCaptions’,
   I had a problem. The result is [this](http://www.sintergi.it/nextgengallery.png)
 *     ```
       <div class="caption_container">
       <div>10_288</div>
       <p>
       <img style="width:643px; height:432px; max-width:643px; margin-left:3px; margin-right:0px; margin-top:0px; margin-bottom:0px; " alt="10_288" src="http://localhost/sintergi/wp-content/gallery/impianti-standard/10_288.jpg">
       </p>
       </div>
       ```
   
 * I think that the problem is a <p> between the caption’s <div> and the img.
 * Can you help me?
    Thank you.
 * Best Regards.
 * [http://wordpress.org/extend/plugins/nextgen-scrollgallery/](http://wordpress.org/extend/plugins/nextgen-scrollgallery/)
 * _[[No bumping](http://codex.wordpress.org/Forum_Welcome#No_Bumping), thank you.]_

Viewing 15 replies - 1 through 15 (of 15 total)

 *  Plugin Author [Benedikt Mo](https://wordpress.org/support/users/bmodesign2/)
 * (@bmodesign2)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431417)
 * hm… what is the name of your theme?
 *  Plugin Author [Benedikt Mo](https://wordpress.org/support/users/bmodesign2/)
 * (@bmodesign2)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431418)
 * ich can’t reproduce this with twenty eleven.
 *  Thread Starter [galbu89](https://wordpress.org/support/users/galbu89/)
 * (@galbu89)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431419)
 * I use Ecobiz theme.
 *  Thank you.
 *  Plugin Author [Benedikt Mo](https://wordpress.org/support/users/bmodesign2/)
 * (@bmodesign2)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431420)
 * oh, ok it’s not a free theme. So can you please send me a link to your blog?
 *  Thread Starter [galbu89](https://wordpress.org/support/users/galbu89/)
 * (@galbu89)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431421)
 * [http://www.sintergi.it](http://www.sintergi.it)
 *  Plugin Author [Benedikt Mo](https://wordpress.org/support/users/bmodesign2/)
 * (@bmodesign2)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431423)
 * Thank you. And can you please write me where I can find the gallery?
    Do you 
   think it’s possible to send me your theme files? My mailadress is info “at” bmo-
   design.de
 *  Plugin Author [Benedikt Mo](https://wordpress.org/support/users/bmodesign2/)
 * (@bmodesign2)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431436)
 * And one more question. What happen if you uncheck use description ?
 *  Thread Starter [galbu89](https://wordpress.org/support/users/galbu89/)
 * (@galbu89)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431440)
 * I find the gallery on WordPress.org in Plugin section.
    If I check ‘Use Desc’
   it’s the same of unchecked: there are no changing. I send you the theme files.
 * Thank you.
 *  Plugin Author [Benedikt Mo](https://wordpress.org/support/users/bmodesign2/)
 * (@bmodesign2)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431441)
 * Thanks.
    I know, where I can download the gallery 😉 I mean, were can I find 
   the gallery at your site [http://www.sintergi.it](http://www.sintergi.it) ?
 *  Thread Starter [galbu89](https://wordpress.org/support/users/galbu89/)
 * (@galbu89)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431442)
 * The page of my website where I put the gallery is here:
    [http://www.sintergi.it/impianti-realizzati/impianti-standard/](http://www.sintergi.it/impianti-realizzati/impianti-standard/)
 *  Plugin Author [Benedikt Mo](https://wordpress.org/support/users/bmodesign2/)
 * (@bmodesign2)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431452)
 * I find the problem, but it is not my fault.
    Your theme replace the custom wordpress
   content filters.
 * Look at:
    functions/theme-functions.php line 83-86
 *     ```
       /**
        * Disable Automatic Formatting on Posts
        * Thanks to TheBinaryPenguin (http://wordpress.org/support/topic/plugin-remove-wpautop-wptexturize-with-a-shortcode)
        */
       function theme_formatter($content) {
       	$new_content = '';
       	$pattern_full = '{(\[raw\].*?\[/raw\])}is';
       	$pattern_contents = '{\[raw\](.*?)\[/raw\]}is';
       	$pieces = preg_split($pattern_full, $content, -1, PREG_SPLIT_DELIM_CAPTURE);
   
       	foreach ($pieces as $piece) {
       		if (preg_match($pattern_contents, $piece, $matches)) {
       			$new_content .= $matches[1];
       		} else {
       			$new_content .= wptexturize(wpautop($piece));
       		}
       	}
   
       	return $new_content;
       }
       remove_filter('the_content',	'wpautop');
       remove_filter('the_content',	'wptexturize');
   
       add_filter('the_content', 'theme_formatter', 99);
       ```
   
 * If you remove this lines, it will work.
 *  Thread Starter [galbu89](https://wordpress.org/support/users/galbu89/)
 * (@galbu89)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431453)
 * Great!
    Thank you very much!!!! Now, the gallery it works good!
 * Thank you.
 *  Plugin Author [Benedikt Mo](https://wordpress.org/support/users/bmodesign2/)
 * (@bmodesign2)
 * [14 years, 5 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431454)
 * If you like the plugin, please rate it at wordpress.org <[http://wordpress.org/&gt](http://wordpress.org/&gt);
   and I would be happy if you donate me something or recommend me.
 *  Plugin Author [Benedikt Mo](https://wordpress.org/support/users/bmodesign2/)
 * (@bmodesign2)
 * [14 years, 2 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431512)
 * problem is the 99, because it change the content after the do_shortcode function.
 *  [theworldofchinese](https://wordpress.org/support/users/theworldofchinese/)
 * (@theworldofchinese)
 * [13 years, 12 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431519)
 * Hi, how do I modify this plugin so that captions are displayed below the image
   instead of overlapping the image and also how do I display multiple lines instead
   of just one?

Viewing 15 replies - 1 through 15 (of 15 total)

The topic ‘[Plugin: NextGEN Scroll Gallery] Scroll Gallery Caption’ is closed to
new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/nextgen-scrollgallery_2c1d0b.svg)
 * [NextGEN Scroll Gallery](https://wordpress.org/plugins/nextgen-scrollgallery/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/nextgen-scrollgallery/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/nextgen-scrollgallery/)
 * [Active Topics](https://wordpress.org/support/plugin/nextgen-scrollgallery/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/nextgen-scrollgallery/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/nextgen-scrollgallery/reviews/)

 * 15 replies
 * 3 participants
 * Last reply from: [theworldofchinese](https://wordpress.org/support/users/theworldofchinese/)
 * Last activity: [13 years, 12 months ago](https://wordpress.org/support/topic/plugin-nextgen-scroll-gallery-scroll-gallery-caption/#post-2431519)
 * Status: resolved