Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author Adam DeHaven

    (@adamdehaven)

    The color of the text is typically controlled by your theme’s CSS. In order to change the text color, you’ll need to add some custom CSS to your theme, as shown here:

    .perfect-pullquote blockquote p {
        color: #333; /* Replace with your preferred text color */
    }
    
    Thread Starter jim_caldwell

    (@jim_caldwell)

    My theme has a custom.css file. I added the css with no success. Here’s where I’m using it: http://jimcaldwelllive.com/waiting-here-for-you-2

    Thanks again for your help!

    Plugin Author Adam DeHaven

    (@adamdehaven)

    It looks like you want the text to be color #363636 but your theme is overriding the color. So alter the CSS snippet I gave you to match what is shown here:

    .perfect-pullquote blockquote p {
        color: #363636 !important;
    }
    
    Thread Starter jim_caldwell

    (@jim_caldwell)

    Still not working… Thanks again!

    Plugin Author Adam DeHaven

    (@adamdehaven)

    What color are you trying to make the text? You may need to clear your browser’s cache after changing the CSS. If you’re trying to make the text blue, it is working. Please copy and paste the CSS you used.

    Thread Starter jim_caldwell

    (@jim_caldwell)

    This is my custom.css file:

    /*
    Theme Name: Iconic One
    Custom CSS Template for Iconic One.
    */

    .perfect-pullquote blockquote p {
    color: #67b1e0 !important;
    }

    Thread Starter jim_caldwell

    (@jim_caldwell)

    Sorry… clearing the cache worked. Thanks for the great support!!!

    Plugin Author Adam DeHaven

    (@adamdehaven)

    I figured it was a cache issue on your end. No problem, glad you like the plugin! If you have the time, I’d really appreciate a review on WordPress, and/or on my site

    I managed to change the font colour with the code above!

    Now I’d like to change the border width, or remove it altogether. There are other borders on the page of 1px, so the default PQ border looks too heavy.

    Could you please provide another code snippet for editing or deleting the border? Thanks.

    Never mind, I got it to work.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Change Font Color?’ is closed to new replies.