Site URL: https://sampsonlab.squarespace.com/meet-the-team
I am using a light box for my website's bios. However, the show up in the incorrect location after saving. They work correctly, but are not in the right place on the page. It works in some areas, but not in others, which I why I'm confused. Any advice or help is much appreciated!!
Here is the code I used:
Header
<link href="//cdn.rawgit.com/noelboss/featherlight/1.7.13/release/featherlight.min.css" type="text/css" rel="stylesheet" />
Footer
<script src="//code.jquery.com/jquery-latest.js"></script>
<script src="//cdn.rawgit.com/noelboss/featherlight/1.7.13/release/featherlight.min.js" type="text/javascript" charset="utf-8"></script>
Page
<div style="text-align:center; padding:0;">
<a href="#/" data-featherlight="#bio-name" class="sqs-block-button-element--medium sqs-block-button-element" style="background-color:#000; color:#fff; padding:20px 20px;">View Name's Bio</a>
</div>
<div style="display:none;">
<div id="bio-name" style="text-align:left;">
<img src="link for image" alt="Name" width="300"
height="376" style="float:left; padding:15px;" /> <br></br>
<h4>Name</h4>
<p>Title<br></br>
Bio <br></br>
<a href="link"target="_blank">Link Name</a> <br></br>
</p>
</div>
</div>