All sections are open, I've done both a ctrl+F and a manual visual search, and there is only the one instance of that coding on the PROD page.
There is the following in the Product Display Layout
<div id="closeup_div" class="closeup"><img id="closeup_image" src="graphics/en-US/cssui/blank.gif" alt="" /><div><a id="closeup_close">close</a></div></div>
Or could it be something to do with the coding in the Product Display Layout Image Machine which lists the Closeup Container as closeup_div and has the following as the Head Template?
<script>
ImageMachine.prototype.ImageMachine_Generate_Thumb nail = function( thumbnail_image, main_image, closeup_image, type_code )
{
var thumbnail, span, img;
thumbnail = document.createElement( 'li' );
span = document.createElement( 'span' ); // to vertically center the thumbnail images
thumbnail.appendChild( span );
if ( typeof( thumbnail_image ) == 'string' && thumbnail_image.length > 0 )
{
img = document.createElement( 'img' );
img.src = thumbnail_image;
thumbnail.appendChild( img );
}
return thumbnail;
}
</script>
There is the following in the Product Display Layout
<div id="closeup_div" class="closeup"><img id="closeup_image" src="graphics/en-US/cssui/blank.gif" alt="" /><div><a id="closeup_close">close</a></div></div>
Or could it be something to do with the coding in the Product Display Layout Image Machine which lists the Closeup Container as closeup_div and has the following as the Head Template?
<script>
ImageMachine.prototype.ImageMachine_Generate_Thumb nail = function( thumbnail_image, main_image, closeup_image, type_code )
{
var thumbnail, span, img;
thumbnail = document.createElement( 'li' );
span = document.createElement( 'span' ); // to vertically center the thumbnail images
thumbnail.appendChild( span );
if ( typeof( thumbnail_image ) == 'string' && thumbnail_image.length > 0 )
{
img = document.createElement( 'img' );
img.src = thumbnail_image;
thumbnail.appendChild( img );
}
return thumbnail;
}
</script>
Comment