How to center product title, price and color options on a product page?

Hello,

I want to center the title of the product, the price and the color selector options.

here is a picture for clarity :

Store URL: https://merciane.com/

Hi, @MotionStore111 .

Follow These steps,

Go to the online store theme and go to base.css file paste the code mentiond below.

@media screen and (max-width: 749px) {

div#product-content {
    padding-top: 12px;
}

div#product-content h1.title.mb-3.h3 {
    text-align: center;
}

.product-content .product-price {margin-left: 50px;}

ul.value.g-variant-color-detail {
    margin: 0px auto;
    display: table;
}

.swatch--gl .name-option {
    text-align: center;
}

}

Result:

If I managed to help you then, don’t forget to Like it and Mark it as Solution!

1 Like

@websensepro

Is there a way to also move the color swatches itself to the center, the label moved but not the swatches itself.