How to make price central on product information section of dawn theme

I’d like to make price positioned centrally on all screens (e.g. desktop, phone..)

Any advice is really appreciated.

URL: https://www.heightboost.co.uk/products/capsules

Dawn theme

Hi @BraxtonEcom

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Online Store ->Theme ->Edit code
Assets ->Base.css

@media(max-width: 767px){
   .price.price--large.price--show-badge {
       display: flex !important;
       justify-content: center !important;
}
}

Hope you find my answer helpful!
Best regards,
Richard | PageFly

Hi @BraxtonEcom

You can try this one.

  1. From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  2. Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  3. In the “Assets” folder, click on “base.css, style.css or theme.css” file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:
  4. And Save.
div#price-template--16141585547430__main {
    text-align: center;
}

Result:

Mobile:

Desktop:

I hope it help.

" :glowing_star: Your Feedback Matters! Please mark the solution and give likes to posts that helped you. Your appreciation fuels our motivation to assist you better! :raising_hands: "