Libre 2 theme; 2 problems (quotation marks, image caption)

  • Unknown's avatar

    Site: tjwebbmd.com or tjwebbmd.wordpress.com

    I am trying to figure out the custom CSS to change two things about the libre 2 theme.

    First, each time I use blockquotes there is a large image of quotation marks to the left side. I’d like to get rid of them but can figure out the CSS to do so.

    Second, each time I caption an image there is a left aligned separator that looks strange and out of place; but I can’t get rid of this either.

    You can see both problems fairly early on in my latest post.

    Any help would be appreciated!

    -TJ Webb

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

  • For the quote, via Custom CSS https://wordpress.com/support/custom-design/custom-css/ add:

    blockquote::before {
        display: none;
    }

    For the separator, to center it:

    figcaption::after {
        margin-left: auto;
        margin-right: auto;
    }

    or, to remove it:

    figcaption::after {
        display: none;
    }
  • Unknown's avatar

    Macmanx thanks so much!

    The figcaption centering worked perfectly; the css to remove it didn’t work for me, but when I used the one to center it and added color: white, it took care of it.

    The blockquote CSS worked great, thank you!

  • The topic ‘Libre 2 theme; 2 problems (quotation marks, image caption)’ is closed to new replies.