Swamper wrote:

Hi, fall guys

Love this product! Been using it since Simpleviewer SWF way back and now refreshed with Juicebox and having some minor issues:

1) For galleries that have longer titles, is there a way to have the title scroll across the top instead of static & truncated? I tried toying with jb-idx-title and jb-idx-ssm-title-wrapper but without much luck.

2) When clicking through to a gallery, (i.e. index.php#expanded URL in browser) it shows thumbnails as 4 columns and 6 rows - where to change that? maxThumbColumns, maxThumbRows only works on Desktop

Thanks

/* Apply this to the title wrapper */
#jb-container .jb-idx-title-wrapper {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

/* Make the title scroll */
#jb-container .jb-idx-title {
    display: inline-block;
    animation: scrollTitle 10s linear infinite;
}

/* Scroll animation for the title */
@keyframes scrollTitle {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

Thanks you, can i help you?