Site logo

Archived topic

Center Button on Homepage (custom HTML)

3 replies · Started by William on February 28, 2022

Viewing posts 1–4 of 4

Hello -

I was hoping someone may be able to help me align this orange button next to the email intake bar.

Here is a picture of the button. It is not centered with the email intake bar. It's slightly lower.

https://imgur.com/a/4oi8ImH

website is: https://thebullfighter.com

Thank you in advance if you have any suggestions.

Hi William,

If there are no settings to achieve this through the form plugin you’re using, here is a CSS code you can try:

form.form-control {
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
}

form.form-control > *{
    margin-top:5px;
    margin-bottom:5px;
}

form.form-control > *:first-child{
    margin-right: 10px;
}

Here is an article with regards to adding CSS: https://docs.generatepress.com/article/adding-css/#additional-css

Adding it through Additional CSS should work.

Hope this helps! :)

Thank you Fernando! This is great.

You’re welcome William! Glad to be of assistance! Feel free to reach out anytime if you’ll need assistance with anything else. :)

This archived topic is closed to new replies.