Here's how to add that reflected image effect. It takes about 2 minutes to do!
Go to http://cow.neondragon.net/stuff/reflection/ and download the zipfile from the "Download the latest..." link.
Extract the file reflection.js into your site folder.
Edit your overall layout and look for the </head> line (about 66 lines down). Immediately above that add
Just below that is the <body ...> tag. Look in it for
<body onload="
Change that to read
<body onload="addReflections();
leave the rest of the line intact.
Edit layout Standard Product Image. Look for the line
immediately above that add
And that's that.
You can alter that last line to be e.g.
to make the reflections 1/4 size and give them 40% opacity. More details are in the reflections documentation.
Go to http://cow.neondragon.net/stuff/reflection/ and download the zipfile from the "Download the latest..." link.
Extract the file reflection.js into your site folder.
Edit your overall layout and look for the </head> line (about 66 lines down). Immediately above that add
Code:
<script type="text/javascript" src="reflection.js"></script>
<body onload="
Change that to read
<body onload="addReflections();
leave the rest of the line intact.
Edit layout Standard Product Image. Look for the line
Code:
border="0"
Code:
class="reflect"
You can alter that last line to be e.g.
Code:
class="reflect rheight25 ropacity40"
Comment