• Hi there, I have a problem with my purchase button on the checkout page. It is on the right hand side of the screen and it covers the total price figure. I think it should be on the left hand side as I have seen other sites.

    How do I move this, I have already removed the white-space: pre; under form but this only fixed the checkout forms! Can someone please help as I have posted this on wordpress e-commerce forums and have had no reply!
    My website is babygiftpots.com.au (add product to cart to see) I don’t know how to add the checkout page link here.

    Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Did you ever find the answer to this? I am having the same issue…

    Thread Starter angelina44

    (@angelina44)

    Hi there,
    No, I have not received any replies! I tried using the ‘shop me’ theme and that is better but that theme has other issues! I have decided to use another website builder that is much easier than wordpress. Good luck with yours.

    I found it.

    If your having this issue this is what I did to fix it.

    Find “style.css” in the CraftyCart Theme folder.

    From Line 35-55 I changed to this code:

    div#page {
    	width: 900px;
    	margin: 0 auto;
    }
    
    div.container {
    	width: 900px;
    	margin: 0 auto;
    	height: 100%;
    	overflow: auto;
    }
    
    div.small {
    	width: 220px;
    	float: left;
    }
    
    div.large {
    	width: 680px;
       height: 650px;
    	float: right;

    This gives more room for the purchase button. If you skip this step your going to get a frame with scroll bars in checkout page.

    Next we’ll move the Purchase Button. I found these settings to look best, play with the settings as you like

    Find wpsc-default.css under your CraftCart Theme folder.

    I changed Line 885-888 to look like this:

    #checkout_page_container .wpsc_make_purchase{
    	bottom: 0px;
    	float: right;
        padding:2px 0px 1px 0px;

    Hopefully this will save someone a lot of trouble, I had fun hunting that little purchase button down ??

    BTW if when you click add to cart it just keeps saying “updating cart” Make sure you have your merchant set up (paypal, google, etc) I had this issue nothing on the web worked, completed the API info for paypal and BAM! no more updating cart issues!

    YOU ARE A BLESSING!! I have been searching for this for days now, and finally you answered it. Thank you so much for taking your time to answer this, and I wish you a happy thanksgiving. =]

    YOU ARE A BLESSING!! I have been searching for this for days now, and finally you answered it. Thank you so much for taking your time to answer this, and I wish you a happy thanksgiving. =]

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Crafty Cart Purchase button’ is closed to new replies.