When a link is clicked and shows an image it uses the
tag with a class: nivo-lightbox-wrap
However, when a link that is clicked and shows inlined html it uses the same
tag with the same class: nivo-lightbox-wrap.
This is fine but if one wanted to apply some different css settings for inline popups but need access to the main parent holder (the one that has the class: nivo-lightbox-wrap) it makes since the css wont know which is popped up.
Right now i added code in your js file that adds "inlined" as another class on the same
as nivo-lightbox-wrap ... in other words it looks like class="nivo-lightbox-wrap inlined" ... that way my css will apply new changes to the inlined container.
When a link is clicked and shows an image it uses the
This is fine but if one wanted to apply some different css settings for inline popups but need access to the main parent holder (the one that has the class: nivo-lightbox-wrap) it makes since the css wont know which is popped up.
Right now i added code in your js file that adds "inlined" as another class on the same