Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #287058

    anthonytkim
    Participant

    I can’t find any settings to edit the placement of this button, but I need to move it from being on the thumbnail image to being under the product price. I also would like to make the button full width of the thumbnail image. I’m assuming that I could edit it with some CSS hacks but can’t find the right class id’s to move.

    #287490

    Rue Nel
    Moderator

    Hello There,

    Thanks for posting in!

    To move it from being on the thumbnail image to being under the product price, please add the following css code in the customizer, Appearance > Customize > Custom > CSS

    .woocommerce li.product .entry-header .button, 
    .woocommerce-page li.product .entry-header .button {
       position: relative;
       margin-top: 10px;
       display: block;
       top: auto;
       left: auto;
       opacity: 1;
    }

    Let us know if this has been helpful to you.

    #293993

    anthonytkim
    Participant

    Worked great, thanks!

    #294632

    Rue Nel
    Moderator

    You are most welcome!
    We are glad we were able to help you out.

    #327149

    NightFox
    Participant

    Hi there,

    Can you please help me to get the add to cart button and the # picker on the same line?

    #327150

    NightFox
    Participant
    This reply has been marked as private.
    #327157

    Rad
    Moderator

    Hi there,

    Please add this too 🙂

    .woocommerce .quantity, .woocommerce-page .quantity {
      display: inline-block;
    }

    Cheers!

    #329702

    MexConcept
    Participant

    Hi, this is awesome! could you just tell us how to place a little space between the #picker and button?

    http://screencast.com/t/ubFTKT9yVRIS

    thanks guys!

    #329706

    Thai
    Moderator

    Hi There,

    Please try following CSS:

    button.single_add_to_cart_button {
        margin-left: 15px;
    }

    Hope it helps.

    #329725

    MexConcept
    Participant

    Rocks like a star! thanks!

    #329729

    Paul R
    Moderator

    You’re welcome!