manzana
1
What the title says, I want to change the width of this:
I want it to be 1/3 of the total width, so categories have more relevance over the default page.
cpradio
(cpradio)
2
With CSS
.column.categories { max-width: 66%; }
.column { max-width: 34%; }
8 Likes