Site logo

Archived topic

Scribe Newsletter alignment and color change

4 replies · Started by Haissam on August 31, 2022

Viewing posts 1–5 of 5

Hello,
I'm using Scribe as a default blog starter template. I'm trying to add signup to the newsletter on the home page but it is not aligning on the center always to the left side. In addition, i need to change the color of the Subscribe button to match the overall color schema

URL sent

1. Add this CSS to align center:

div#mc_embed_signup {
    margin-left: auto;
    margin-right: auto;
}

2. And this CSS to style the button:
div#mc_embed_signup {
margin-left: auto;
margin-right: auto;
}

#mc_embed_signup .button {
    background-color: var(--accent);
    color: #fff;
    font-family: Inter,sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 4px 10px;
    text-transform: uppercase;
    line-height: 1em;
    border-radius: 0;
}

Thank you for your help.

Centering the registration form is working now. However, styling the submit button is not working.

This archived topic is closed to new replies.