PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Need help changing overflow to hidden on the wrapper

  1. horsietime
    Member

    Hi! The overflow visibility won't change to hidden. What am I doing wrong? Please excuse the "black" and ugly areas. Making it nice and dark so I can see everything!

    Site: http://www.homesthatflow.com

    [css]
    gform_wrapper_2 {
    	background-color: #000;
    	border:5px solid #ddd;
    	margin: 0 0 0 400px;
    	width: 30%;
    }
    
    #gform_wrapper_2 ul li:before, .gform_wrapper ul li:after, .gform_wrapper ul.gform_fields {
    	margin: 0;
    	overflow: hidden; !important;
    	padding: 0;
    }
    
    #gform_wrapper_2 form {
    	text-align: left;
    }
    
    #gform_wrapper_2 .top_label input.large, .gform_wrapper .top_label select.large, .gform_wrapper .top_label textarea.textarea {
    	 width: 50%;
    }
    
    #gform_wrapper_2 .gform_body .gform_fields .gfield .ginput_container {
    	border: 1px solid #145897;
    	background-color: #145679;
    }
    
    #gform_wrapper_2 input, div.gform_wrapper select, div.gform_wrapper textarea {
    	background-color: #789156;
    }
    
    #gform_wrapper_2 .top_label .gfield_label{
    	color: #fff;
    	font-family: 'Architects Daughter';
    	font-size: 22px;
    }
    Posted 11 years ago on Saturday October 13, 2012 | Permalink
  2. Looks like this part of your CSS is invalid - it has two semicolons in the overflow:

    [css]
    #gform_wrapper_2 ul li:before, .gform_wrapper ul li:after, .gform_wrapper ul.gform_fields {
    margin: 0;
    overflow: hidden; !important;
    padding: 0;
    }

    Should be:

    [css]
    #gform_wrapper_2 ul li:before, .gform_wrapper ul li:after, .gform_wrapper ul.gform_fields {
    margin: 0;
    overflow: hidden !important;
    padding: 0;
    }
    Posted 11 years ago on Saturday October 13, 2012 | Permalink
  3. horsietime
    Member

    Haha. Silly mistake. Thank you - but code still doesn't work! Any other ideas? It seems like it should but when I use firebug - the code is crossed out and the preceding main code is active. I am tempted to just delete the main code out of the plugin - but then that would ruin any updates...hmm...

    Posted 11 years ago on Sunday October 14, 2012 | Permalink
  4. Your site definitely changed - the black area has significantly decreased since the last time I pulled it up. What exactly is wrong with how it looks now?

    Screenshot

    Posted 11 years ago on Sunday October 14, 2012 | Permalink
  5. horsietime
    Member

    Ok so now it is working. This is simply embarrassing. Please mark this as closed. And thank you for your patience. :-))

    Posted 11 years ago on Monday October 15, 2012 | Permalink

This topic has been resolved and has been closed to new replies.