How do you change font colours?

Posted in: Newspaper
Post count: 37

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.
Post count: 22421

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!

Post count: 37

Hi Bogdan

Thank you for showing me how to do it, much appreciated!

Best regards

Post count: 205

How can I bold the Subtitle in posts?
https://drive.google.com/file/d/1W98KesmaotnmRunEJCbMXAiP3eKWPbZo/view
Thank you

Post count: 205

Website: S o f t f u l l y . c o m

Post count: 27744

Hello,

Please use this code .td-post-sub-title {
font-weight:bold;
}

Set the code in Theme Panel > Custom code -> Custom css.

Thank you!

Post count: 205

Thank you very much, Anamaria
Yet I can see bold italics but just want bold only, so remove italic

Post count: 27744

Hi,

You can use this code .td-post-sub-title {
font-style:normal;
}

Thank you!

Post count: 205

Yet I use the following code:

.td-post-sub-title {font-weight:bold;}
.td-post-sub-title {font-style:normal;}

If the above code is possible then suggest me sub-title in the H2 tag
Thank you

Post count: 21065

Hello @Viju!

There are some options for H2 in the theme panel settings: Newspaper -> Theme panel -> Theme fonts -> Post content.

Thank you!

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