Okay
  Public Ticket #3219360
Remove Line from PullQuote
Closed

Comments

  •  9
    cdbriggs90 started the conversation

    Hi,


    How can I remove the line to the left of the pull quote that is generated automatically?

    Thanks

    Attached files:  Screenshot 2023-01-30 at 10.24.25.png

  •  2,958
    Andrew replied

    Hello there,

    Thank you for reaching out to us.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .wp-block-pullquote blockquote::before{
        display: none !important;
    }
    

    Thanks,

  •  9
    cdbriggs90 replied

    Thanks! That worked and i've added some more code. How can I reduce the space between the quote and the normal text? There is quite a big gap.

    Attached files:  Screenshot 2023-01-30 at 13.38.53.png

  •  2,958
    Andrew replied

    Hello again,

    Try adding this code and let us know if this works out for you.

    .wp-block-pullquote {
        padding: 0 !important;
    }
    

    Kind regards,

  •  9
    cdbriggs90 replied

    That works, but is there any way to control how much padding? I tried changing the number but it still stays quite close to the text.

  •  2,958
    Andrew replied

    Hello again,

    You can change the padding to something like this:

    .wp-block-pullquote {
        padding: 0 !important;
    }
    

    Try this and let me know how it goes.

    Cheers,

  •  1,877
    Judith replied

    Hi there,

    Please try this css:

    .wp-block-pullquote {
        padding: 0em 0;
    }

    Thanks.

  •  9
    cdbriggs90 replied

    Great, thank you!