http://www.sinistercreations.co.nz/z...roducts_id=437
as you can see for some reason my production discription is pushed down the bottom, i would like it to be next to the image. Can anyone help?
Regards
haley
http://www.sinistercreations.co.nz/z...roducts_id=437
as you can see for some reason my production discription is pushed down the bottom, i would like it to be next to the image. Can anyone help?
Regards
haley
You'll want to look at your stylesheet for this and re-work the widths, floats etc.. on the various div elements until you get them where you need them.
For starters, do a view source while looking at your page in a browser, and find the section you want to alter. Make note of the style, then find that same class or div id in the styesheet and make the desired changes.
Eric
20 Ways to Increase Sales Using Zen Cart
Zen Cart contribs: Simple Google Analytics, Export Shipping Information
search this in stylesheet.css and make float: right; to left
#productbox (line 15)
{
margin-top: 0pt;
margin-right: 0pt;
margin-bottom: 0pt;
margin-left: 0pt;
padding-top: 0pt;
padding-right: 0pt;
padding-bottom: 0pt;
padding-left: 0pt;
width: 70%;
float: right;
}
hope it will solve ur problem