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 ?
You
.shop-sidebar
must call it as a class, along with the previous classes and tags to enter the class correctly, you could do it like this:Or also calling the span tag:
Looking at the code you show (
<span class="widget-title shop-sidebar"> Categorias </span>
), maybe it's because you haven't added the tagspan
. Try the following way, that should work