Avada Forums Community Forum avada blockquote style

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • Uta
    Participant
    Post count: 2

    Hi, how can I change the blockquote style?

    nelliemar
    Participant
    Post count: 4

    I’m also wondering this!

    Did you find a solution @uta?

    nelliemar
    Participant
    Post count: 4

    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/

    pigsandbees
    Participant
    Post count: 29

    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:

    Link

    To change the blockquote text colour try the following (change the colour to your choice of colour):

    blockquote > p {
    color: #ffffff;
    }
    nelliemar
    Participant
    Post count: 4

    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!

    pigsandbees
    Participant
    Post count: 29

    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.

    nelliemar
    Participant
    Post count: 4

    Thank you so much! It totally worked now.

    I used the code exactly as in your last post and the colors changed.

    Really appreciate the additional info as well.

    Thanks again!

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.