Change font of blockquotes

  • Unknown's avatar

    When using the editor I have a great font for blockquotes. But if I open the preview it is completely differnt, only bold but the same font as the rest oft the text. how can I Change only blockquote font?
    THX in advance!

    The blog I need help with is: (visible only to logged in users)

  • You can change the font of your blockquote text by targeting the following CSS element (using red color and courier font purely as examples):

    .wf-active blockquote {
        font-family: "Courier New";
        color: red;
        margin-left: 20px;
        padding-left: 20px;
        border-left: solid 2px #000000;
        text-align: left;
        background: #e0e0e0;
    }
  • The topic ‘Change font of blockquotes’ is closed to new replies.