• Resolved Henry

    (@henrybaum)


    I can’t get the font-size in CSS for blockquote to change. Here’s what I’ve added in “Additional CSS”

    blockquote {
    font-size: 13px;
    font-style:normal;
    background:#E8E8E8;
    line-height:22px;
    padding:0 0 0 60px;
    padding-left: 15px;
    border-left: 3px solid #a31010;
    margin:0 0 30px 40px;
    min-height:60px;
    }

    It changes the background and border color but NOT the font size. I also changed this in style.css from 24px, but it didn’t do anything either.

    blockquote p {
    font-size: 13px;
    font-size: 2.4rem;
    line-height: 1.5;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • Mind you change both the px and em values. You have different values now which may not work.

    In my Make child theme I added the Blockquote CSS as follows:

    blokquote p {
    font-size: 13 px;
    font-size 1.3em;
    }

    Works fine.

    Paul

    Thread Starter Henry

    (@henrybaum)

    That did it, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Trouble with Blockquote CSS’ is closed to new replies.