How to centre pick up delivery option text on sense theme

Hello! Just wondering if someone can help me, or has a code to centre the information circled in blue. Happy to enter the code myself :slightly_smiling_face:

My URL is auburnaroma.com.

In the section of your theme CUSTOM CSS add this code:

.pickup-availability-preview {
justify-content: center;
}

1 Like

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > base.css and paste this at the bottom of the file:
.pickup-availability-preview {
justify-content: center;
}
1 Like

Hey @auburnaroma

Follow these Steps:

  1. Go to Online Store
  2. Edit Code
  3. Find theme.liquid file
  4. Add the following code in the bottom of the file above tag.

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

Best Regards,
Moeed

1 Like

Hi @auburnaroma

This is Richard from PageFly - Shopify Page Builder App, I’d like to suggest this idea:

Online Store ->Theme ->Edit code

Assets ->Base.css

.pickup-availability-preview {
    display: block !important;
}

Hope you find my answer helpful!

Best regards,

Richard | PageFly

1 Like