Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #861207

    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?

    #861281

    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

    #861384

    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

    #862231

    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

    #862511

    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

    #863162

    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

    #863534

    That worked great, thanks John!

    #863691

    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

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Sidebar Text Formatting for Woocommerce Generated Categories’ is closed to new replies.