How to change the color

Posted in: Newspaper
Post count: 74

Hi,

Please tell me how to change the category background color and font color.
(https://drive.google.com/open?id=0BwBOesVUMZwcWU9UNUk3WkRUU3c)

Please tell me how to change the background color and font color of TAGS.
(https://drive.google.com/open?id=0BwBOesVUMZwcQ3JTTkNVT243WkU)

▼PAGE URL
http://surfclub.jp/building-a-gimbal-in-rust-an-introduction/

Please tell me how to change the font color.
(https://drive.google.com/open?id=0BwBOesVUMZwcMTJZYzBYQ3pSQk0)
(https://drive.google.com/open?id=0BwBOesVUMZwcNURfUWtwMW55Z0E)

▼PAGE URL
http://surfclub.jp/

Post count: 22421

Hello,

On posts the category tag will grab the color of the primary category color: https://forum.tagdiv.com/primary-category/ The category color is set on the category settings section: https://www.screencast.com/t/honYKDbwy1n
The tag background color is only added on the hover and is grabbed from the theme accent color. THey can be changed with css if you need to change the tag colors.

.td-post-small-box a{
background-color:red;
color:white;
}

The color of the post titles can only be changed with css also. It depends on the block where you want to change the color as not all blocks implement the title in the same way.

.td_module_wrap .td-module-title a{
color:Red;
}

You can add css codes in the theme panel-> custom css box.

Thank you!

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