Okay
  Public Ticket #2004773
Cart/Checkout : gray lines
Closed

Comments

  •  5
    khouya started the conversation

    Hi 

    Is there a way to change the color of the gray lines in cart/checkout pages? See  before/after in attachement please. 

    Thanks ! 

  • [deleted] replied

    Hi khouya,

    This is a customization question and support doesn't offer customization services as we wrote on our support homepage and on this area. I will try to help you this time thoughsmile.png

    Please add the code below to your Custom CSS area:

    .woocommerce .woocommerce-cart-form .shop_table tr td, .woocommerce .woocommerce-cart-form .shop_table tr th {
        border-bottom: 1px solid #333;
    }
    .form-control, .input-text {
        border: 1px solid #333;
    }
    .woocommerce .woocommerce-checkout .order-totals-column {
        border: 1px solid #333;
    }
    .woocommerce .woocommerce-checkout .order-totals-column h2 {
        border-bottom: 1px solid #333;
        box-shadow: 0 1px 0 #FFF, 0 2px 0 #333;
    }
    .woocommerce #order_review .shop_table tr td, .woocommerce #order_review .shop_table tr th, .woocommerce .cart_totals .shop_table tr td, .woocommerce .cart_totals .shop_table tr th {
        border-bottom: 1px solid #333;
    }

    Have a great day!