[Resolved] Center Button on Homepage (custom HTML)

Home Forums Support [Resolved] Center Button on Homepage (custom HTML)

Home Forums Support Center Button on Homepage (custom HTML)

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2137299
    William

    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.

    View post on imgur.com

    website is: https://thebullfighter.com

    Thank you in advance if you have any suggestions.

    #2137321
    Fernando
    Customer Support

    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! 🙂

    #2137944
    William

    Thank you Fernando! This is great.

    #2140125
    Fernando
    Customer Support

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

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