I'd like to add a second logo (Made in the U.S.A.) to select categories and/or sub-categories.
Any pointers on how to go about it?
I'd like to add a second logo (Made in the U.S.A.) to select categories and/or sub-categories.
Any pointers on how to go about it?
Where do you want this 'logo' to appear ?
Opposite of the the existing Mfg. or sub cat. logo.
http://www.seriousoffroadproducts.com/Wheels/TrailReady
It would be very easy to slot it UNDERNEATH the cat image.
All you need do is start the category description with an <img src="xxxxxxxxxxxxx" /> codeblock.
20 years a Zencart User
And you can position the image/content exactly where you want by wrapping it in a div or span with id or just giving the image an id so that a stylesheet rule can affect it uniquely. <img id="madeInUSA" src="xxxxxx.gif" />
#madeInUSA {position: absolute; top: 23px; right: 23px;} and a position: relative; on the containing element (such as .centerColumn{position: relative;} ) might be the easiest way to handle it. Of course you would adjust the dimensions as desired.
Last edited by gjh42; 31 Oct 2013 at 02:53 AM.