Hi, I need the title only in my categories: Guide Mac, Guide Windows, Guide iPhone, Software.
I use module 1
http://www.pcusb.it/wp-content/uploads/2017/06/Schermata-2017-06-22-alle-08.18.29-1024×640.png
Thanks……
Hello,
Sorry but the theme does not have a feature to remove the title for specific categories only. You can hide it with css from preferred categories though. Here is an example:
.category-gadgets .td-page-title{
display:none;
}
You can add more categories to the code like so
.category-gadgets .td-page-title, .category-fashion .td-page-title, .category-video .td-page-title, .category-mycategoryname .td-page-title{
display:none;
}
You can add the code in the theme panel-> custom css box
Thanks
And for reduce this space?
http://www.pcusb.it/wp-content/uploads/2017/06/IMG_0166-768×1024.jpg
Hi,
You can try a code like this one for example
– https://www.screencast.com/t/PvKfII9sa
.td-category-description {
text-align: center;
width: 100%;
}
.category .td-crumb-container {
display: none;
}
Just enter it in Theme panel->Custom Css section.
Thanks
Hi,
This code will modify the font size and color of the category description
– https://www.screencast.com/t/JWz22LElr3M
You just need to use your own desired values
.td-category-description p {
font-size:25px;
color:blue;
}
Thanks