Support » Theme: InstaAppointment Lite » Remove background color in block quotes

Viewing 3 replies - 1 through 3 (of 3 total)
  • Adding this rule to your custom CSS should work:

    #content blockquote {
      background-color: transparent;
    }

    However, you need to clean up an existing rule. Change this:

    .page h1.entry-title {
        display: none;
      blockquote {
        background:#470647;
        color: #ffffff !important;
    }

    to this:

    .page h1.entry-title {
        display: none;
    }

    It looks like you forgot to close off the rule for the entry title with a closing right brace.

    Thread Starter BloggerGrl15

    (@bloggergrl15)

    Thanks for all of your help! It all worked.

    dchardnett

    (@dchardnett)

    Hi BloggerGrl15!

    How did you get rid of that appointment box and Book Now button?

    Thanks.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove background color in block quotes’ is closed to new replies.