We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I made two different configurations at the end of the main.js file:
gridGallery({ selector: "#main", darkMode: false, layout: "square", gapLength: 0, rowHeight: 500, columnWidth: 400 }); gridGallery({ selector: "#main-vertical", darkMode: false, layout: "vertical", gapLength: 1, rowHeight: 800, columnWidth: 400 });
However, only the top (selector "main") configuration will be loaded. I want to apply ONLY the second, vertical configuration to my gallery:
<div class="gg-box" id="main-vertical"> <img src="resources/picture/cr1.jpg"> <img src="resources/picture/cr2.jpg"> </div>
It will just load the square "main" gallery, though... Any way to get around this?
Thanks!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I made two different configurations at the end of the main.js file:
However, only the top (selector "main") configuration will be loaded.
I want to apply ONLY the second, vertical configuration to my gallery:
It will just load the square "main" gallery, though...
Any way to get around this?
Thanks!
The text was updated successfully, but these errors were encountered: