[Resolved] Newsletter form change

Home Forums Support [Resolved] Newsletter form change

Home Forums Support Newsletter form change

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1667845
    Manuela

    Hello,

    I have a newsletter form on both my homepage and page that shows my blog posts. On my homepage, the newsletter form is white on dark background. The problem is blog posts page has white background, therefor the newsletter form is invisible there.

    I’m wondering if there’s any way to change the color of the form from the blog posts page.

    Ideally, the Email box would be black, with ‘Your email address’ written in white, and Lora. And the ‘Subscribe’ button black as well, with ‘Subscribe’ written in white. And Lora.

    Thank you,

    #1668113
    Ying
    Staff
    Customer Support

    Hi Manuela,
    Try this CSS:

    .blog .mc4wp-form input[type="email"] {
        background-color: #000;
        font-family: 'Lora';
    
    .blog .mc4wp-form input[type="submit"] {
        background-color: #000;
        color: #fff;
    }
    #1668159
    Manuela

    Hi Ying,

    Thank you very much!

    And I would really appreciate your help with the following, as well:

    • I would like the color of the Subscribe button as I hover above it to be #edc685, and the Subscribe word to become black.

    #1668185
    Ying
    Staff
    Customer Support

    Try this 🙂

    .blog .mc4wp-form input[type="submit"]:hover {
        background-color: #edc685;
        color: #000;
    }
    #1668236
    Manuela

    Hey Ying,

    Great support as always!

    Thank you

    #1668257
    Ying
    Staff
    Customer Support

    You are welcome 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.