• Resolved jaybrantley

    (@jaybrantley)


    Hi –

    In the preview, the form looks perfect, but once the shortcode is posted, the title and subtitle color doesn’t show. If I highlight the text, I can see that it is indeed there, but just doesn’t show. Please advise. Thanks.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author WPKube

    (@wpkube)

    Hi,

    You have this in the CSS:

    It’s forcing black text color. It’s either coming from the theme or it’s custom CSS you added.

    So it’s overwriting the color value for the title/subtitle in the form. If you can’t get rid of that code you can use this ( add it in WP admin > Appearance > Customize > Additional CSS ):

    #optinforms-form1-title {
        color: #eb432c !important;
    }
    #optinforms-form1-subtitle {
        color: #333 !important;
    }
    Thread Starter jaybrantley

    (@jaybrantley)

    Thank You! That worked perfectly.

    Could you advise on how to remove the padding above the form underneath my banner?

    Plugin Author WPKube

    (@wpkube)

    You’re welcome.

    #optinforms-form1-container {
        margin: 0;
    }
    #optinforms-form1 {
        border-radius: 0;
    }

    The code also removes the rounded borders.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Title & Subtitle Color Text Not Showing’ is closed to new replies.