Two problems. One might only be in an issue in some browsers. As far as the images not showing up, and this affects all browsers, they're not on the server. Upper and lower case matter on the server. For example, there is no:
8.jpg
But there is a:
8.JPG
The other missing images are probably similar. Either rename them so that they agree with your code, or change their names in the code so they match the actual filenames.
The other problem is that in at least some browsers, the menue_media menu covers the gallery making it impossible to scroll it. This can be fixed by editing the gallerystyle.css file. Using a text only editor like NotePad, add the highlighted as shown:
Code:
/* Gallery Styles */
#motioncontainer {
/*margin:0 auto; Uncomment this line if you wish to center the gallery on page */
width: 100%; /* Set to gallery width, in px or percentage */
height: 225px; /* Set to gallery height */
margin: 25px 0 0 0;
z-index: 11;
}
#motioncontainer a img {
border: 1px solid #cc . . .
Bookmarks