• Hi

    I was wondering if it was possible to change the symbol of the blockquote. Right know it is just a big line |, but I would really like it to be this symbol instead: ?

    Thanks! and by the way, the theme is still awesome! ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author Ben Sibley

    (@bensibley)

    The line to the left of the blockquote is actually a border, rather than a character/symbol. I’m afraid that it can’t be switched to use a character instead.

    One similar thing you could do to stylize it though, is to switch it to a double border like this:

    blockquote {
      border-style: double;
      border-top: none;
      border-right: none;
      border-bottom: none;
    }

    Here’s how that will look: https://pics.competethemes.com/image/2o220l1Y2f1I

    You can add that code to the “Custom CSS” section in the Customizer (Appearance > Customize) to try it out.

    Thread Starter theidowich

    (@theidowich)

    Okay, thanks. That’s definitely better. But there is now way to add a big symbol in the blockquote function?

    Theme Author Ben Sibley

    (@bensibley)

    The only way to do this would be to manually add the character into the markup like this:

    <blockquote>
    <span>&raquo;</span>
    This is the quote text
    </blockquote>

    That adds the HTML character code for the double-right arrow symbol: ?

    Then, you could style it with CSS by using the span element it’s placed in, like this:

    blockquote span {
      position: absolute:
      right: 100%;
      font-size: 21px;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Change blockquote symbol’ is closed to new replies.