Id also like to place two graphics toward the bottom of the shopping cart sidebox that only show up when someone adds an item to their cart. The first small graphic button would read "Checkout" and have a link to begin the checkout process. Also a "Check out with PayPal" graphics button. Basically the same graphics that show up when you view the full page shopping cart page. (only smaller and in the shopping cart sidebox when items are added.)
I recently changed "Display Cart After Adding Product" to false, and this is the reason for the needed edits to the shopping cart sidebox.
No idea how I'd accomplish this. Any help is greatly appreciated.
Add to your stylesheetThe other requires more concentration than I have right now... time for bed! :)Code:#shoppingcartHeading {color: #00ff00;}
Sorry for diving into this thread, in all the SIDEBOXES, how do i change the font style to say something like Arial etc? I am using the Gloss Black template and can't figure it out, thanks.
I almost have my side cart just the way I need it.
I need to ad the "PayPal" checkout button below the standard "Checkout" button.
The code to add the standard checkout button is as follows:
What would it be to add the PayPal Checkout button? It would be nice to place the word "OR" between the two checkout buttons as well.Code:$content .= '<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHECKOUT, BUTTON_CHECKOUT_ALT) . '</a>';
Thanks for any help.
kal - You would change the font for #navColumnOne and #navColumnTwo, or some of their sub-elements, in your stylesheet. It would be easier to give the best advice with a link to see your site.
JGraphics - You will probably find that code in the Paypal subforum here. To add an "or", just insert it into the HTML at the end of the first anchor:If you want them aligned vertically, add breaks:PHP Code:$content .= '<a href="' . zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL') . '">' . zen_image_button(BUTTON_IMAGE_CHECKOUT, BUTTON_CHECKOUT_ALT) . '</a> OR ' ;
PHP Code:. '</a><br /> OR <br />' ;
Sorry to jump in on your thread, but my question seems right in line.
In IE, my shopping cart sidebox does not add a break between each product listed when multiple items are added to the cart.
Here is the URL
http://www.bikebrake.com/index.php
Where would I add a <br> to correct this problem?
Thx,
Last edited by yongkoom; 21 Dec 2008 at 06:34 PM. Reason: add URL