How do you center page title on collection page - Empire theme?

Trying to center the title on my page so it looks nicer with the image underneath. Working with the Empire theme

Thanks!

Hello @JoeToolLocker ,

  1. Go to Online Store->Theme->Edit code
  2. Asset->theme.css-> paste bellow code in bottom of file
@media only screen and (max-width: 858px){
.template-collection .collection--title {
    text-align: center !important;
}
}

Thanks

To center collection page titles (on mobile & desktop view) you can add this rule at the bottom of theme.scss.css

.collection--title {
  text-align: center;
}

Result:

Thank you kindly!