This topic has 4 replies, 2 voices, and was last updated 4 years, 4 months ago ago by Olga Barlow
Hi, I created two sections with according mode (fisarmonica).
One for the product category and the other for brands list but I know that font, size and color are very different. How can I equalize them?
https://prnt.sc/t8epsy
Hello,
Add the following custom code to child theme style.css
.brands-list .et-isotope-item .title {
padding: .86em 0;
font-size: 1rem;
text-transform: uppercase;
line-height: normal;
}
.brands-list .et-isotope-item .work-item {
padding-bottom: 0;
}
.categories-menu-element .cat-item a {
border-bottom: none;
}
.categories-menu-element.product-categories {
padding: 0 15px;
}
Regards
I add this but I still have 2 different font. how can I change this?
Hello,
Then replace the previous code by the code below
.brands-list .et-isotope-item .title {
font-family: Muli;
padding: .86em 0;
font-size: 1rem;
text-transform: uppercase;
line-height: normal;
}
.brands-list .et-isotope-item .work-item {
padding-bottom: 0;
}
.categories-menu-element .cat-item a {
border-bottom: none;
}
.categories-menu-element.product-categories {
padding: 0 15px;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up