Avada › Forums › Community Forum › avada blockquote style
Tagged: avada blockquote style
-
AuthorPosts
-
Hi, how can I change the blockquote style?
I’m also wondering this!
Did you find a solution @uta?
I tried f.ex this custom css
.blockquote {
background-color: #ff0000;
}but it’s def not working
Still, the same grey b-quotes on my page 🙁 https://www.curiouschloride.com/substances/sodium-lauryl-sulfate/
blockquote is a HTML element, not a CSS class. Remove the . and your CSS works:
blockquote { background-color: #ff0000; }
Link to a screenshot showing your site’s blockquote with a yellow background:
To change the blockquote text colour try the following (change the colour to your choice of colour):
blockquote > p { color: #ffffff; }
Hi @pigsandbees,
Thank you for your reply!
I’m really a beginner at this and unfortunately, I can’t make it work.
I tried to put the code in Code fields but it’s not working. And I also tried the Custom CSS’ field which I’m pretty certain is wrong, and it’s not working anyways.
Any suggestion of where I could paste it, to make it apply to all pages?
Many thanks!
Don’t put it in the code fields. It should go in Custom CSS (Avada > Theme Options > Custom CSS).
You may have to add !important to the code as below:blockquote { background-color: #ff0000 !important; } blockquote > p { color: #ffffff !important; }
Remember to Save Changes and clear Fusion caches (Avada > Performance > Reset Fusion caches ) along with any caching plugins and your browser cache.
-
AuthorPosts
- You must be logged in to reply to this topic.