Woocommerce Shop Sidebar Font Size

Good morning,

Could you kindly tell me how to increase the font size of the text under “Sort By Location” on my page, Condo Reports (https://denverhighriseliving.com/condo-reports/)? Here is a screenshot: https://prnt.sc/j3nsnv. I would like the font size to be 17px.

Thank you,
J

Hi,

To achieve that, you can add this in Theme Options > CSS

.widget_product_tag_cloud a {
   font-size:17px !important;
}

Hope that helps

Awesome! That was easy!

Along the same lines, could you tell me how to edit the widget titles on https://denverhighriseliving.com/condo-reports/?

  1. Remove boxes from around both titles: https://prnt.sc/j3ue6x
  2. Left align those titles.
  3. Increase font size of titles.

I think if I see a couple more examples from you I can run with this on my own. :slight_smile:

Thank you,
J

Hi There,

Add the following CSS rule to change those areas as well.

.x-sidebar .h-widget {
    border: none;
    text-align: left;
    font-size: 18px;
    padding-left: 0;
}

Hope that helps.

Thank you! This is great.
J

Glad we were able to help :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.