OK, the layout is a bit odd but, that's really your choice. However, I can tell you that with a DOCTYPE in style (not in attributes) if you mean pixels, you must specify them.
Style examples:
Code:
#motioncontainer {
margin:0 auto; /* Uncomment this line if you wish to center the gallery on page */
width: 50%; /* Set to gallery width, in px or percentage */
height: 350px; /* Set to gallery height */
}
which was OK but the height seems excessive and here, inline on the page:
Code:
<div id="motioncontainer" style="position:relative;overflow:hidden; width:800; height:65">
To be used, these must be:
Code:
width:800px; height:65px
As written on your demo page, the net effect is width:50%;height: 350px;
Don't confuse these with attributes:
Code:
<img border="0" src="images/Page3_50.jpg" width="65" height="50">
which assume pixels if % is not specified and which should never have the px added.
One other thing, you have a bunch tags for two images which don't exist on the server:
Code:
<img border="0" src="images/Page_14Thumb_50.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_50.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_50.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45"> </nobr>
<img border="0" src="images/Page_14Thumb_45.jpg" width="65" height="45">
These should all be removed but, keep the closing </nobr> tag.
Bookmarks