Okay
  Public Ticket #1460584
discount price overlaps columns
Closed

Comments

  •  4
    martinleclercq started the conversation

    Hello Support,

    I've made some discount products. On the shopping page, where I have a 5 column setup the discount price overlaps the column width. I've attached an image to show you what I mean.

    Hope you can help :)

    Kind regards,

    Martin

  • [deleted] replied

    Hi Martin,

    Can you please add the code below to your Custom CSS area:

    .woocommerce .product .item-info .item-info-row {
        display: block;
    }
    .woocommerce .product .item-info .item-info-row>.title-column {
        display: table;
    }
    .woocommerce .item-info .price del {
        margin-left: 0px !important;
    }
    @media screen and (min-width: 768px) {
        .woocommerce .product .item-info .item-info-row>.price-column {
            padding-left: 0px;
        }
    }

    This should fix your issue.
  •  4
    martinleclercq replied

    tnx!