• Resolved prmorrone

    (@prmorrone)


    Does anyone know what custom CSS code I need to change the “Join our newsletter” and “Email*” font white? The widget form is a GoDaddy email marketing form.

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

Viewing 1 replies (of 1 total)
  • Hi @prmorrone,

    You can make a small CSS tweak to make that text white. The following should do the trick globally, meaning on every gem form.

    .gem-form p:not(.gem-error) {
       color: white;
    }

    If you only want to alter the text in the footer you could use the following:

    #footer .gem-form p:not(.gem-error) {
       color: white;
    }

    Let us know how that goes!

Viewing 1 replies (of 1 total)
  • The topic ‘Change footer widget title’ is closed to new replies.