Viewing 3 replies - 1 through 3 (of 3 total)
  • Just use the CSS tag selector and place your styles in it

    blockquote {
        //Your CSS styles
    }

    This code would either go into a child theme or a custom css plugin.

    Are you looking for a particular style?

    Thread Starter Brittany R Williams

    (@brittany-r-williams)

    I’ve added CSS into my child theme’s style sheet and it still doesn’t work. This is my CSS:

    blockquote {
    background-color: #f363ae;
    font-color: #000000;
    font-size: 12px;
    border-width: 2px;
    border-stle: solid;
    border-color: #cccaca;
    padding: 10px;
    }

    Try this:

    .article blockquote {
      background-color: #f363ae;
      border: 2px solid #cccaca;
      color: #000000;
      font-size: 12px;
      padding: 10px;
    }

    If you want to remove the quotes image add background-image: none; to these set of rules.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Blockquotes’ is closed to new replies.