Archived topic
Scribe Newsletter alignment and color change
4 replies · Started by Haissam on August 31, 2022
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
Hi Haissam,
Any chance you can link us to the site in question and point us to where we should be looking at?
You can use the private information field.
https://docs.generatepress.com/article/using-the-premium-support-forum/#private-information
Let me know :)
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.