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.