Tagged: x
-
AuthorPosts
-
November 19, 2016 at 1:52 am #1263409
I have some active campaign email forms and would like to format the colour of the buttons. Can I do that with classes?
Example
November 19, 2016 at 1:59 am #1263417Hello There,
Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
Regards.
November 19, 2016 at 2:06 am #1263423I’d also like to remove the labels from the fields
November 19, 2016 at 2:08 am #1263424Hi Jeremy,
Please provide your site’s URL, and if it’s behind a coming soon page then please provide your login credentials as well.
Thanks!
November 26, 2016 at 11:27 pm #1271908November 26, 2016 at 11:53 pm #1271918Oh, that’s the way I want the form to look, but it’s using the mailchimp integration.
Here is the active campaign integration. http://smartnutrition.ca/cornerstone-draft/
November 27, 2016 at 12:12 am #1271923Hi there,
Please add following code in Customize -> Custom -> Global CSS :
._form-content label._form-label { display: none; } textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input { -webkit-transition: border linear 0.2s,background-color linear 0.2s,box-shadow linear 0.2s; transition: border linear 0.2s,background-color linear 0.2s,box-shadow linear 0.2s; width: 53%; } ._submit { color: #ffeea3; border-color: #ffeea3; border-radius: 0; }
Add
background-color: hsla(0, 0%, 0%, 0.51);
in column’s style field. Addtext-align:center;
in text element’s style field.Hope it helps.
November 28, 2016 at 9:50 am #1273294Thanks for the help! Unfortunately that doesn’t seem to change anything
November 28, 2016 at 10:24 am #1273343Hi again,
Try adding the following code in your Child Theme’s style.css file:
._form-content label._form-label { display: none !important; } textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input { -webkit-transition: border linear 0.2s,background-color linear 0.2s,box-shadow linear 0.2s !important; transition: border linear 0.2s,background-color linear 0.2s,box-shadow linear 0.2s !important; width: 53% !important; } ._submit { color: #ffeea3 !important; border-color: #ffeea3 !important; border-radius: 0 !important; }
Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!
-
AuthorPosts