How to center the title in the video section with origin theme

Hello, how can I center the title on the video section?

My url is www.boxywallets.com for reference

Hello @lelestore1 ,

Follow these steps:

  1. Go to Online Store → Theme → Edit code

  2. Open your base.css file and paste the following code below:

.video-section .title {
    text-align: center;
}

Thanks

Hi @lelestore1

Try tihs one.

  • From your Shopify admin dashboard, click on “Online Store” and then “Themes”.
  • Find the theme that you want to edit and click on “Actions” and then “Edit code”.
  • 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:
.title-wrapper.title-wrapper--no-top-margin {
    text-align: center;
}

I hope it help.

Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!