Make Product Name - Price Same line

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

image

/* title price same line */
section.grid-meta-wrapper {
    flex-direction: column;
}
.grid-main-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

2 Likes