Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #957536

    Hi, how can right align the add to cart button?

    Also, how can I change the color of the quantity +, – and the number to white so they will be more visible?

    Thanks.

    #958658

    Hey DROR,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    form.cart button.single_add_to_cart_button {
      float: right;
    }
    #top .main_color .quantity input.plus,
     #top .main_color .quantity input.minus,
     #top .main_color .quantity input.qty[type="text"] {
      color: #fff;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #958779
    This reply has been marked as private.
    #959175

    Hi bakbek,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    form.cart button.single_add_to_cart_button, div form.cart div.quantity {
      float: right;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #959483
    This reply has been marked as private.
    #960897

    Hi,

    Thanks for the info.

    Adjust the css code a bit.

    div form.cart div.quantity, div form.cart div.quantity + button {
        float: right;
    }
    
    div form.cart div.quantity {
        margin-left: 20px;
        margin-right: 0;
    }

    Best regards,
    Ismael

    #960929

    Thanks

    #961637

    Hi bakbek,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.