Thickness of Colored Categories Bar

When the categories are in the “Boxes with Subcategories” mode, is there a way to increase the thickness of the colored bar on the left? There’s an arrow pointing to in the image below.

Screen Shot 2020-08-03 at 10.23.36 AM

1 Like

Almost certainly. Try it with CSS:

.category-list tbody .category {
  border-left: 6px solid;
}

This is the CSS from the Theme I view Meta on, but yours will be similar, alter the px value.

In general, get used to using the Browser Inspector to find the right bits. Experiment.

Here’s the guide for Firefox: Page Inspector - Firefox Developer Tools | MDN

6 Likes