Make Product Name - Price Same line

You can use following code to align Product Name and Price Same line

/* title price same line */
section.grid-meta-wrapper {
    flex-direction: column;
}
.grid-main-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* update code */
.product-list-title-price {
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    width: 100% !important;
}
.product-list-item-price {
    margin: 0 !important;
}

2 Likes

Update code.

1 Like