Site logo

Archived topic

Newsletter form change

5 replies · Started by Manuela on February 22, 2021

Viewing posts 1–6 of 6

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,

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;
}

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.

Try this :)

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

Hey Ying,

Great support as always!

Thank you

You are welcome :)

This archived topic is closed to new replies.