Not an answer to aligning them but try this
admin > config > Layout Settings > Column Width - Left > increase to say 180-200
and then
admin > config > Layout Settings > Column Width - Left Boxes > a like increase as above
Not an answer to aligning them but try this
admin > config > Layout Settings > Column Width - Left > increase to say 180-200
and then
admin > config > Layout Settings > Column Width - Left Boxes > a like increase as above
Zen-Venom Get Bitten
Good suggestion, thanks. Fixed the problem. However, I imagine others are running into this, and for those using left and right sideboxes and needing to maximize space in the middle, hopefully there is a fix which will allow for smaller column widths.
I don't think there is an effective dynamic fix, short of revamping tpl_categories.php to use actual <ul> lists. It would be possible to fix in the stylesheet and admin without altering PHP files *if* you had no more than one level of subcategories.
One thing you can do is distinguish top cats from subcats by font style/size/color, background color, etc.
Another good suggestion, thanks.
I don't plan on having more than one level of subcategories, can you elaborate on your stylesheet fix?
Kobra's solution worked fine for me on this template, but I'm sure others who are using both columns could use the extra room and fix through the stylesheet...
There is a setting in admin > Configuration > Layout Settings > Categories SubCategories Indent with default value of
This puts two spaces ( ) in front of each subcat name, and is cumulative, i.e. four spaces in front of a sub-subcat. Eliminating one or both of the will reduce the indent.
You can put the indent back so it applies to wrapped text as well by increasing margin-left or padding-left in the appropriate classes in your stylesheet.Code:a.category-subs, a.category-products { /*background-color: #ff69ff;*/ /*color: #6699aa;*/ /*margin: 0.2em 0;*/ margin-left: 0.2em; /*adjust to taste*/ /*padding: 0.2em 0.3em;*/ }
Thanks...this is definitely not going to be my last ZC store and this is a valuable little aesthetic touch.