Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to edit the 'add to cart' button for the site I am customizing http://radiantiger.bigcartel.com/product/hhhgtf. I want the customer to click on the 'add to cart' button and be taken straight to the cart.

1) I understand I have to edit the javascript for the add to cart button, How do I do that? & what code should I use?

2) how do I move the 'cart button' from the top left of the sidebar and make it inline with my 'add to cart button' like this: http://dl.dropbox.com/u/90031565/Fullscreen%20capture%20382013%2050354%20PM.jpg

I tried putting the "cart button" into the same div with the "add to cart button", but it lost the realtime display of whats in the cart functionality.

Thank you in advance.

share|improve this question

migrated from webmasters.stackexchange.com Mar 9 at 16:29

1 Answer

up vote 0 down vote accepted

You need to move the cart_nav_list from the aside bar and into the ID add_cart.

So for example your code should look like this:

<div id="add_cart">
 <button class="button" type="submit" name="submit" id="add_to_cart">Add to Cart</button>
  <ul class="clearfix" id="cart_nav_list">
   <li id="cart_button">
    <a id="open_cart" href="/cart">Cart
     <div class="clearfix" id="cart_info">
      <span id="cart_count">0</span>
      <span id="cart_divider">|</span>
      <span id="cart_total"><span class="currency_sign">$</span>0.00</span>
     </div>
    </a>
   </li>
  </ul>
 </div>

Attached a screenshot to display more information where you find these elements. To see information like I've pasted install firebug.

html5 move cart rightside

Additionally to get the the elements working side by side your need to make a minor edition to the style sheet like so:

#add_cart button, #cart_nav_list {
 float:left;
}
share|improve this answer
Thank you very much. It worked. I am very grateful – Angela Smith Mar 8 at 23:38
No problem at all, enjoy. – bybe Mar 8 at 23:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.