Hello again, i recently added the Google checkout module to my site and need to know how to bump the button more to the left. Would this be accomplished through the CSS? any examples would be out-freaking standing. thanks
![]()
Hello again, i recently added the Google checkout module to my site and need to know how to bump the button more to the left. Would this be accomplished through the CSS? any examples would be out-freaking standing. thanks
![]()
Well i figured it out. So for anyone with the same issue, this is how I did it. I opened up the stylesheet.css in my templates/css folder and defined a name for it like so :
#googleCheckout {
float: right; <--- Use other CCS commands to move it where
} you would like.
Then i wrapped a Div tag around the include in the tpl_shopping_cart_default.php located in the templates folder like so :
<div id="googleCheckout">
<?php include(DIR_WS_MODULES . 'show_google_components.php'); ?>
</div>
This allowed me to control the layout of the Google Checkout button through the style sheet. I don't know if this way is correct or not as i know near nothing of CSS but it worked for me. Hope this has helped anyone with the same issue.
Thank you. It worked for me.