Hi
I want to be able to make some changes to the template, but when I try to add custom code to do this nothing is changing.
I want to change the breadcrumbs font colour to a darker colour, the background of the category boxes to a lighter colour, make the post heading bold text and make the sub heading a different font colour.
Please can you explain how I achieve this?
Thank you
-
This topic was modified 9 years by
antonmh.
Hello,
Some parts of the theme can only be changed through css.
You can add css code in the theme panel-> custom css box.
fort he breadcrumbs you can change their color using this code:
.entry-crumbs, .entry-crumbs a{
color:black;
}
The category boxes are handled on posts from the category color: https://www.screencast.com/t/DOUpZp9o
For other templates you can use this css code:
.td-post-category, .td-big-grid-meta .td-post-category{
background-color:orange
}
The post heading font can be made bold from the fonts section-> post titles
the subtitle color can be changed using this css:
.td-post-sub-title{
color:black;
}
Thank you!
How can I bold the Subtitle in posts?
https://drive.google.com/file/d/1W98KesmaotnmRunEJCbMXAiP3eKWPbZo/view
Thank you