Is there a mechanism within the theme to format the sidebar text styling? I would like to make my text slightly larger and not bold in a Woocommerce generated sidebar menu. Is there some quick CSS that can be used?
Hey John,
Could you be more specific about the text larger and which text are you talking? See here: http://prntscr.com/guah5o
Best regards,
John Torvik
Sorry John,
The text I would like to make larger and not bold is the list of categories beginning with “Women’s Clothing”…
There are subcategories for these as well that I would also like to match when they appear.
Thanks
John
Hi,
Okay, thanks for giving back the information.
To fix it, just add the following custom CSS code at Enfold Theme Options > General Styling > Quick CSS
.cat-item a {
font-size: 14px;
font-weight: normal !important;
}
.children .cat-item a {
font-size: 12px;
font-weight: normal !important;
}
Best regards,
John Torvik
Hi John,
This seemed to work fine for the .children .cat-item a but not for the .cat-item a.
Adding this css also increase the width of the sidebar which I don’t want to do (I want to keep it at the 80%/20% ratio.
Any ideas on how to fix this?
Thanks
Hi,
You can try adding the !important property. Like this:
.cat-item a {
font-size: 14px !important;
font-weight: normal !important;
}
Best regards,
John Torvik
That worked great, thanks John!
Hi,
I’m glad John was able to help, if you need additional help, please let us know here in the forums.
Best regards,
Jordan Shannon