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.
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:
Perfect! Thank you! Where can I find documentation on properties such as display, flex-direction, etc? Looking to add a BG color too.
이 링크가 CSS를 시작하는 데 도움이 될 수 있습니다.
또한 Customization > Theme component 중 원하는 기능을 제공하는 것을 찾아볼 수도 있습니다. GitHub에서 코드를 살펴보고 코드를 복사하는 데에도 좋은 자료가 될 수 있습니다.
The Mozilla Developer Network tends to be of better quality than W3Schools: MDN Web Docs
Awesome thanks will have to look over this one.