Tilte on single category

Posted in: Newspaper
Post count: 127

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……

Post count: 22421

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

Post count: 127

Thanks, but i need add title, not remove.
Thank you!

Post count: 127

Ok, i solved.
I remove title only in categories: mac,windows,iphone and mobile.
Thanks!

Post count: 127
Post count: 127

And subtitle on center, thanks.

Post count: 20688

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

Post count: 127

Thanks Simion, work!
Last answer: text size and text color of description?
Thank you very much.

  • This reply was modified 9 years by Ginfox.
Post count: 20688

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

Post count: 127

Thanks Simion, it work!!!

Viewing 10 posts - 1 through 10 (of 10 total)
The forum ‘Newspaper’ is closed to new topics and replies.