• I’d like to switch the blockquote around, to show the text on the left and the image on the right. Is this possible?

Viewing 4 replies - 1 through 4 (of 4 total)
  • You could switch it and display it at the bottom. You’ll need to add this to a custom CSS plugin:

    blockquote:before {
       content: '';
    }
    blockquote:after {
       float: right;
       margin-right: 10px;
       font-family: FontAwesome;
       font-size: 30px;
       line-height: 1;
       content: '\f10d';
       color: #ff6b53;
    }

    Thread Starter OssieW

    (@ossiew)

    Nope, that put the quotation mark at the end, and the image is still on the left. I’ll have to keep tinkering ??

    Sorry, for some reason I thought by image you meant the mark and you’re referring to a general blockquote, not that widget.
    This should do it:

    .bq-img {
        float: right;
    }

    Thread Starter OssieW

    (@ossiew)

    brilliant, that’s done the trick!
    Thanks ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Swtiching image and text in Blockquote’ is closed to new replies.