Hi Steven,
My phone is a Nokia 635 running Windows 8.1 and Internet Explorer the gallery you asked me to check loads up but I just get 2 static images in middle of page not scrolling demo as on laptop with Windows 8.1 and Internet Explorer. I should point out that I do use embedded juice galleries in www.midlandenglishsettersociety.co.uk with no issues on mobile. Wonder if the problem is due to multiple grid containers, the template uses the 960 grid system. On the www.midlandenglishsettersociety.co.uk the gallery is embedded straight into the standard width <div class="grid_12"> but is nested on the new gbs site
<div class="grid_12"> </div>
<div class="grid_6 welcome">
<div align="center">
<h6> </h6>
</div>
<!--START JUICEBOX EMBED-->
<script src="/gallery/welcome/jbcore/juicebox.js"></script>
<script>
new juicebox({
baseUrl: '/gallery/welcome/',
containerId : 'juicebox-container',
galleryWidth : '100%',
galleryHeight : '600',
backgroundColor: '#222222'
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED-->
<h6> </h6>
</div>
<div class="grid_5 news">
<h5 align="center"><strong>Gundog Breeds Association of Scotland</strong></h5>
I use a modified template from http://www.justdreamweaver.com/dreamwea … lates.html which includes mobile support using CSS3 @media code loaded as below.
<script type="text/javascript" src="js/customscripts.js"></script>
jQuery(document).ready(function($) {
$("ul.sf-menu").supersubs({
minWidth: 12, // minimum width of sub-menus in em units
maxWidth: 27, // maximum width of sub-menus in em units
extraWidth: 1 // extra width can ensure lines don't sometimes turn over
// due to slight rounding differences and font-family
}).superfish().supposition(); // supposition function added to reposition fly-out items when extending beyond browser window
$("#accordion").accordion({
autoHeight: false,
collapsible: true,
icons: {
'header': 'ui-icon-plus',
'headerSelected': 'ui-icon-minus'
}
});
$(function () {
$("#tabs").tabs();
});
// Create the dropdown base for mobile navigation
$("<div id='mobilenav'><select/></div>").appendTo("#nav");
// Create default option "Go to..."
$("<option />", {
"selected": "selected",
"value": "",
"text": "Go to..."
}).appendTo("#nav select");
// Populate dropdown with menu items
$("#nav a").each(function () {
var el2 = $(this);
var spancode = el2.html();
var el = spancode.split('<')[0];
if ($(this).hasClass("homelink")) {
$("<option />", {
"value": "index.html",
"text": "Home"
}).appendTo("#nav select");
}
if (el2.attr("href") != "#" && el != "") {
$("<option />", {
"value": el2.attr("href"),
"text": el
}).appendTo("#nav select");
}
});
$("#nav select").change(function () {
window.location = $(this).find("option:selected").val();
});
});