Hi @konehead,
try #baguetteBox-overlay figure
Thank you for your timely response.
I tried the below code in my global css but to no avail.
#baguetteBox-overlay figure {
margin: 1em !important;
}
Is the is the right syntax?
Do you have a live example?
I setup a test page in one of my WP test sites with your gallery first, then the Meow Gallery second. Notice the spacing between images in the second gallery?
Here is the link:
Test link for gallery…
NOTE: After I select an image from your gallery opening your lightbox, it seems to open two instances. So I have to close it twice. Probably a conflict with the Meow Gallery Lightbox?
-
This reply was modified 11 months ago by
konehead.
The correct selector is #baguetteBox-overlay .full-image img
But I don’t think margin is the right choice here. Better use max-width e.g. max-width: 90%;
#baguetteBox-overlay .full-image img {
max-width: 90%;
}
Finally had a chance to try it, but it did not work.
Any other thoughts?