How to style category boxes?

Did you try to find out yourself?
Make CSS changes on Your Site explains how you can find selectors by using your browsers inspect tool.

For example using “inspect” at the name of the category already takes you to
image
When you click the triangle, you can see

Looks like

.category-boxes h3 {
    text-align: center;
}

is the css you want to overwrite.
You can find the description right below

3 Likes