Tagged: MailChimp
-
AuthorPosts
-
August 12, 2014 at 1:57 am #302926
Hi,
I keep getting a scroll bar on the bottom of a form I have created using the coffee cup form builder. I am using this because it is the preferred method for mailchimp. If you can help me get rid of this with some quick CSS, I would be grateful.
Thanks,
Tim
August 12, 2014 at 12:04 pm #303135Hey Tim!
Login credentials do not seem to work. Can you please check them once again?
Best regards,
YigitAugust 12, 2014 at 2:13 pm #303203This reply has been marked as private.August 12, 2014 at 2:28 pm #303205Hi!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
form#docContainer { overflow: hidden; }
Cheers!
YigitAugust 12, 2014 at 4:37 pm #303290did not work. scroll bar still there. next?
August 12, 2014 at 4:43 pm #303298Hey!
That is because code is not being applied. Add it to custom.css file inside Enfold/CSS folder
#docContainer { overflow: hidden!important; }
Cheers!
YigitAugust 12, 2014 at 5:03 pm #303319In the inspect element section of the browser, this works:
#docContainer {
width: 90%;
max-width: 800px;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
overflow: hidden;
}However, when added to quick CSS, it does not work, even when using the !important command. Any suggestions?
August 12, 2014 at 5:04 pm #303323Hi!
Have you tried adding the code to Custom.css file inside Enfold/css folder?
Also make sure that wp-content/uploads folder has correct permissions ( 755 )Best regards,
YigitAugust 12, 2014 at 11:40 pm #303471did not work
August 13, 2014 at 10:55 am #303707Hey!
Adding custom CSS works fine on theme elements. You can try adding following code to Functions.php file in Appearance > Editor
function add_custom_script(){ ?> <script> jQuery(window).load(function(){ jQuery('#docContainer').addClass('overflow-hidden'); }); </script> <?php } add_action('wp_footer', 'add_custom_script');
then add following code to Quick CSS
<pre.overflow-hidden { overflow: hidden !important; }
If that too does not work, try contacting plugin developerRegards,
YigitAugust 16, 2014 at 9:33 pm #305356this bit of code broke my site. thanks.
August 16, 2014 at 9:37 pm #305357i fixed it, but the code did not work and did not remove the scroll bar.
August 18, 2014 at 5:14 am #305550Hey!
Thank you for update.
If the above suggestions doesn’t work it means that you can’t modify the style of the plugin or script. Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy due to the fact that there is simply no way to account for all of the potential variables at play when using another developer’s plugin or script. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author.
Regards,
Ismael -
AuthorPosts
- You must be logged in to reply to this topic.