Topic: I have captionHAlign="CENTER" but still displays on the left.

I have captionHAlign="CENTER" but the caption still displays on the lower left side of the screen.  I want it to display centered on the lower portion of the screen.  Here is my config file.

<juiceboxgallery 

    maxImageWidth="1500"
    maxImageHeight="1500"
    importTitle="NONE"
    galleryTitle="Tournament Winners"
    showOpenButton="false"
    imageTransitionType="SLIDE"
    showAutoPlayButton="true"
    backButtonUseIcon="true"
    backButtonPosition="TOP"
    showSmallBackButton="true"
    screenMode="SMALL"
    showSplashPage="NEVER"
    backButtonUrl="/photos.php"
    showSmallThumbNav="true"
    showPagingText="true"
    thumbWidth="100"
    thumbHeight="100"
    useFullscreenExpand="true"
    showDownloadButton="true"
    showImageOverlay="ALWAYS"
    captionHAlign="CENTER"

>

Re: I have captionHAlign="CENTER" but still displays on the left.

captionHAlign is a Large Screen Mode option only (this is noted in the short description of the option on the Config Options page) and your gallery is always displayed in Small Screen Mode (by setting screenMode="SMALL") so the option is not used in your gallery.

If you like, you could try adding the following CSS to the <head> section of your gallery's web page:

<style type="text/css">

    /* IMAGE TITLE */
    .jb-caption .jb-caption-title {
        text-align: center !important;
    }

    /* IMAGE CAPTION */
    .jb-caption .jb-caption-desc {
        text-align: center !important;
    }

</style>

Re: I have captionHAlign="CENTER" but still displays on the left.

OK - Thanks for your prompt reply.

Not sure it's logical to support this in large screen only.

Re: I have captionHAlign="CENTER" but still displays on the left.

When I first switched from my old method to Juicebox, I used large screen mode (auto).  Within hours, I received emails requesting that all thumbnails be displayed just like my previous method (instead of just a few thumbs that large screen uses).

Re: I have captionHAlign="CENTER" but still displays on the left.

You're welcome.

Please feel free to post suggestions for future versions in the Feature Requests forum thread.
This keeps all the ideas together and ensures that they are not overlooked by the developers.
Thank you.