display navigation invisible

3 messages Options
Embed this post
Permalink
tpwiiikatj

display navigation invisible

Reply Threaded More More options
Print post
Permalink
I've installed Shadowbox, it work fine except that the display navigation is not visible.
How do i make it visible?

Thanks.

The website, the gallery is in the EMBEDDED ART section.
http://ceciliawee.com/pandaprojects.html

Here is the head of my document:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<link rel="stylesheet" type="text/css" href="shadowbox.css">
<script type="text/javascript" src="source/shadowbox/shadowbox.js"></script>
<script type="text/javascript">

Shadowbox.init({
        players: ["qt", "img"],
        options:{
        displayNav:true
        }
});
</script>

Wizzud

Re: display navigation invisible

Reply Threaded More More options
Print post
Permalink
You've moved (or copied) shadowbox.css from the source/shadowbox folder to your root folder. This means that all the relative paths (in the stylesheet) to the background images (the nav symbols) are now incorrect since they are looking for the images in [root]/resources rather than [root]/source/shadowbox/resources (which is where they are!).
Move shadowbox.css back to the source/shadowbox folder and include that file.
Combine literacy with curiosity and a whole world of information opens up to you
tpwiiikatj

Re: display navigation invisible

Reply Threaded More More options
Print post
Permalink
Thanks.