Hello,
I want to right align the submit button, how can we do this?
We tried the code in This Forum Thread and updated the form id’s and it just hid the button altogether.
The form is located in our footer at: EHBID Website.
Thanks,
Micah
Hello,
I want to right align the submit button, how can we do this?
We tried the code in This Forum Thread and updated the form id’s and it just hid the button altogether.
The form is located in our footer at: EHBID Website.
Thanks,
Micah
Hi Micah,
Thank you for reaching out to us. As you see this would require custom CSS as this is not a theme feature by default and is outside of our support scope, but we will do our best to help you getting started with the customization but we will not be able to implement it. Try adding the following code in the Theme Options > CSS:
.tco-subscribe-form {
display: flex;
justify-content: space-between;
align-items: center;
}
.tco-subscribe-form fieldset {
flex: 2;
margin-right: 10px
}
.tco-subscribe-form fieldset:last-child {
flex: 1;
margin-right: 0;
}
.tco-subscribe-form input {
margin-bottom: 0 !important;
}
Please note that the code provided above serves as a guide only and is to help you in getting started so implementing it and maintaining the code will be out of our support scope and for further maintenance for new possible versions of the theme that may cause the customization to break, you will need to hire a developer.
Don’t forget to clear all caches including your browser’s cache after adding the code. Hope this helps!
Thanks, that did exactly what I needed.
Micah
You’re most welcome,
Cheers!
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.