Notifications
Clear all

[Solved] Changing colors

4 Posts
2 Users
2 Reactions
576 Views
Posts: 40
Topic starter
(@dmitriyt)
Trusted Member
Joined: 2 years ago

Hello. I was looking for an answer on the forum, and I understood that the color.css file cannot be changed.

I need to change the color of the quote. I tried inserting code into custom css. But nothing changes.

3 Replies
Posts: 40
Topic starter
(@dmitriyt)
Trusted Member
Joined: 2 years ago

Tell me what code you need to insert into the custom css?

2 Replies
Chris
(@chris)
Joined: 3 years ago

Famed Member
Posts: 3627

Hi @dmitriyt,

Use this CSS to change the blockquotes text Color:

#wpforo #wpforo-wrap .wpforo-post blockquote, #wpforo #wpforo-wrap .wpforo-revision-body blockquote {
    color: red;
}
(@dmitriyt)
Joined: 2 years ago

Trusted Member
Posts: 40

@chris You have given the code to change the font color. I upgraded it a bit and it works, thanks a lot.

#wpforo #wpforo-wrap .wpforo-post blockquote, #wpforo #wpforo-wrap .wpforo-revision-body blockquote {
    color: red;
    border:#893939;
    background:#ffe4e4;
}