I use Highslide on my website and blog and the images pop up beautifully when the URL starts http://, but when the URL URL starts https:// (which it doesn't automatically do as I haven't enabled it yet) then images don't pop up, they open up on a blank page. Is this because of JS? I do refer to all images using https:// in the code. Thanks, Ilke C
Making sure all src in the img tag are https://
In the head:
<script type="text/javascript" src="highslidemf/highslide-full.js"></script>
<script type="text/javascript" src="highslidemf/highslide.config.js"></script>
<link rel="stylesheet" type="text/css" href="highslidemf/highslide.css" />
In the body: main website
<a href="images/gallery/TrinasSheepBangle.jpg" class="highslide" rel="highslide"><img src="images/gallery/TrinasSheepBangle.jpg" width="150" height="150" alt="Trina's Sheep mounted in a bangle" /></a>
WordPress blog
<a class="highslide" rel="highslide" href="https://www.mabelfigworthy.co.uk/fof/images/BarExperiments1.jpg"><img src="https://www.mabelfigworthy.co.uk/fof/images/BarExperiments1.jpg" width="137" height="150" alt="Preparing a cutwork grid" /></a>
Expected result: when clicking on an image, a larger version pops up. Actual result: when clicking an image, it opens the larger version on a page of its own, so you need to use the back button to get back to the blog/website.