I want to change the default size of this section of a WordPress site, but I can't find a way to do it. I must say that I have only tried the following code:
.widget-title shop-sidebar {
font-size: 22px;
}
I have also used !important
, without making changes to the font size
.widget-title shop-sidebar {
font-size: 22px !important;
}
This is the part where I want to make the changes:
<span class="widget-title shop-sidebar"> Categorias </span>
What am I doing wrong ?