|
Are you saying you always want the photo information under the photo? You can delete the javascript that switches between the two layouts:
if (<IMAGE_WIDTH> > <IMAGE_HEIGHT>) {
$("table#hphoto").show();
} else {
$("table#vphoto").show();
}
and you can then delete the vertical photo table and show only the horizontal photo table. Not sure exactly how it would look with vertical photos though since the point of the template, and it's design, was to have the different layouts depending on the photo dimensions.
|