Try removing the css width for .wp-flybox_tab
. It is currently set for 360px and as !important
. .wp-flybox_tab
is the wrapper for the entire tab. Your form is 362px and the button is 39px. When your container is smaller than the interior items it will stack them. Try changing the width to a larger number, or remove it all together and keep it at the default (auto
).
The css is inline and is rendering at line 49 for me. Below is a snippit of the css to help you find it… It is in the first line below…(wp-flybox_tab {width:360px !important;}
textarea:focus {border-bottom-color: #f47c30 !important;}.bg-beta {background: #353535 !important;}.text-beta {color: #353535 !important;}.wp-flybox_tab {
width:360px !important;
}
.wp-flybox_tab .ninja-forms-cont {
width:300px;
}
#wp-flybox_tab1 .form-tab {
background: rgba(0,0,0,.6) !important;
border: #000000 1px solid !important;
padding: 20px 30px 10px 30px !important;
}
.wp-flybox_tab .field-wrap, #ninja_forms_required_items {
margin-bottom:6px !important;
}
.wp-flybox_tab input[type="text"], input[type="password"], input[type="email"], input[type="search"], textarea {
border:1px solid #908e8f !important;
background-color:#908e8f !important;
color:#ffffff !important;
}
.wp-flybox_tab input[type="submit"] {
border:1px solid #908e8f !important;
background: none !important;
padding: 5px 21px !important;
}
.wp-flybox_tab input[type="submit"]:hover {
border:1px solid #f47c30 !important;
background: #f47c30 !important;
color:#ffffff !important;
}
Let me know if you still have a problem. Thanks!
-
This reply was modified 7 years, 8 months ago by cconoly.