Center Category Logo

Hello,

I have searched and haven’t found how I can center the Category logo that is above nav while viewing the Category page?

Thanks.

You mean a category page like this?

It looks like you have a trial on our Starter plan, which doesn’t allow custom themes. You’d have to be on our Standard plan to do something like this.

With a custom theme you’d do this by adding CSS like this:

.category-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

to get an outcome like this:

4 Likes

Perfect! Thank you! Where can I find documentation on properties such as display, flex-direction, etc? Looking to add a BG color too.

1 Like

This link may help get you started with CSS

You can also look for Theme component that do what your looking for. They can also be a good resource to look over the code in GitHub to copy code from.

1 Like