Topic: Adding Gallery to Drupal Site
Hello!
I've been trying to embeed my Lightroom made Juicebox Gallery into a drupal site, locally made.
The problem is that my gallery does not appear.
I have followed every step at the Support page and read the Troubleshooting info.
I have placed the folder created by juice box under /Users/.../Sites/drupal/sites/all/themes/mg/galleries
The Full HTML "article" that I created in my site consists of the following code:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Juicebox</title>
<meta charset="utf-8" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="description" content="This is a Juicebox-Pro Gallery. Get yours at www.juicebox.net" />
<style type="text/css">
body {
margin: 0px;
}
#juicebox-container {
margin: 0 auto;
}
</style>
</head>
<body>
<!--START JUICEBOX EMBED.-->
<script src="/Users/.../Sites/drupal/sites/all/themes/mg/galleries/Profile_Gallery/jbcore/juicebox.js"></script>
<script>
new juicebox({
containerid : 'juicebox-container',
baseUrl : '/Users/.../Sites/drupal/sites/all/themes/mg/galleries/Profile_Gallery/',
backgroundColor: '#222222',
});
</script>
<div id="juicebox-container"></div>
<!--END JUICEBOX EMBED.-->
</body>
</html>
Any help would be appreciated.