Err scratch that, doing that caused all the modals to be at the bottom of the page underneath the content.
Instead I just messed with the z-index (changes in bold)
In easy-modal-site.css:
.emodal {
top:100px;
visibility: hidden;
position: absolute;
z-index: -999;
}
In easy-modal-site.js:
.css({
visibility: “visible”,“z-index”:”999″
})}
Will update if this causes any errors.
Unfortunately, that method caused the map to be zoomed out completely and pointed at Antarctica for whatever reason.
I found a solution though: I went into /easy-modal/assets/easy-modal-site.css and removed “visibility: hidden;” and “position: absolute;” from the .emodal class. Not sure if it broke functionality elsewhere, but for my purpose it’s working fine. Thank you though!