Tagged: 

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #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

    #303135

    Hey Tim!

    Login credentials do not seem to work. Can you please check them once again?

    Best regards,
    Yigit

    #303203
    This reply has been marked as private.
    #303205

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    form#docContainer {
    overflow: hidden;
    }

    Cheers!
    Yigit

    #303290

    did not work. scroll bar still there. next?

    #303298

    Hey!

    That is because code is not being applied. Add it to custom.css file inside Enfold/CSS folder

    #docContainer {
    overflow: hidden!important;
    }

    Cheers!
    Yigit

    #303319

    In 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?

    #303323

    Hi!

    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,
    Yigit

    #303471

    did not work

    #303707

    Hey!

    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 developer

    Regards,
    Yigit

    #305356

    this bit of code broke my site. thanks.

    #305357

    i fixed it, but the code did not work and did not remove the scroll bar.

    #305550

    Hey!

    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

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