Changing colour of header & block quote texts
-
Hi,
Is it possible to change the colour of both Blockquote and Heading texts in the Tonal theme from the default to red, using CSS?
Thanks,
Tim
(PS – my blog is currently private, but I can invite you as viewer if it’s helpful)The blog I need help with is: (visible only to logged in users)
-
Hi, do you mean heading text is for post title?
Anyway, I sent request to your website . -
Of course, yes :-)
Please try the following CSS and let me know if this what you are after.
h1, h2, h3, h4, h5, h6, .single-format-quote { color:red; } -
Fantastic, thanks!
This works for header, but not for block quote, unfortunately. This page, for example, the quote is still in grey:
-
Could you make your blog public so I can access it and get the correct CSS selector for blockquote? Thank you.
-
Hi Chaitanya,
Not ready to go public yet, but I’ve just invited you as a viewer – let me know if you don’t get the invite.
Thanks!
-
-
-
-
Here css code for blockquote;
blockquote{ color: red; }The blockquote style has opacity property, it means when you change the color, it will be little transparent . If you want to remove the opacity style you can use this css;
blockquote{ color: red; opacity: 1; }If you want to change color of quote symbol, you can use this;
blockquote:before{ color: blue; } -
-
-
- The topic ‘Changing colour of header & block quote texts’ is closed to new replies.