http ://walteholly.com/store/index.php?main_page=product_info&cPath=1&products_id=3
How can I move the add to cart to the left side of the page?
Thanks.
http ://walteholly.com/store/index.php?main_page=product_info&cPath=1&products_id=3
How can I move the add to cart to the left side of the page?
Thanks.
How can I also align the picture to the left? It was on the left before, but it moved to the right. No idea how that happened.
#productMainImage, #reviewsInfoDefaultProductImage, #productReviewsDefaultProductImage, #reviewWriteMainImage {
margin: 0em 1em 1em 0em ;
float:left;
}
Add the red part. If you don't want the other images on the left, separate the productMainImage into its own rule.
#cartAdd {
float: right;
text-align: center;
margin: 1em;
border: 1px solid #FFFFFF;
padding: 1em;
}
Change the right to left.
This stuff is pretty easy to find if you:
Install the Firefox browser and the Web Developer plugin for Firefox. You can use those to see where in the stylesheet you change the styling of the various page elements.
Ctrl-Shift-Y will allow you to hover over a section of the page and see the class and id names for that section in the box at the top. The statements in the stylesheet that begin with # are id's and the ones that begin with dots are classes.
Ctrl-Shift-E will open the CSS editor and allow you to edit the stylesheet and see the changes in real time without changing anything permanently. An essential tool.
Some prefer Firebug, which does much the same thing.
Help! I added image handler add on... but the pictures are out of alignment where do I find where to align them? I downloaded the webdeveloper addon for firefox and tried almost everything... but can't seem to find where to adjust those...
htt p://walteholly.com/store/index.php?main_page=product_info&cPath=1&products_id=3
Add to your stylesheet:
#productAdditionalImages {float:left; margin:8em 0 0 0;}
#productAdditionalImages img {margin:0 1em 0 0;}
Add the red part if you want space between the additional images.
Hey, Thanks! It works!
If I want to change the font size at the header and footer area,
where About Us Privacy Policy Terms and Conditions Contact Us are...
Do I also need to add additional css information because i tried changing alot of font sizes in the stylesheet but unable to customize the size for each individual(header and footer)... cause when i change the font size the middle categories fonts also change to the same size...
Your help is greatly appreciated!
Hello everyone I'm new to the website world I built my first website and the hosting company I use offer Zen Cart I uploaded it from my hosting site the only thing I having hard time understanding is.....my live website has add to cart buttons on many pages... how do I connect those to zen cart so that my clients can pay for there items?
The short answer is, you don't.
Zen Cart is not built to be a back-end checkout processor, it is built to handle the whole display and management of your products.
If all you want is to check out and pay for your items, there are reported to be carts that work that way, and you should go look for one of them.
If you want to have integrated management of your products, sales, customer relations and inventory, Zen Cart can handle that, but you will need to put the products into Zen Cart's system and style its template to fit your design.
A look at what you have now will let us advise on how much work is involved.
Last edited by gjh42; 10 Dec 2010 at 10:11 AM.
Hey, sorry but how do i set the width?
Right now it's
#productAdditionalImages {float:left; margin:-15em 0 0 0;}
.additionalImages {clear: left;}
I tried changing the margin but it just keeps pushing down the all the images, it doesn't extend the width.
And you probably want to reset the margin.Code:#productAdditionalImages {float:left; margin:-15em 0 0 0; width:300px;} .additionalImages {clear: left;}