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.

Change Padding and Style Help

  1. brani
    Member

    I am trying to change the padding in the Form Widget area on the left side of the site to match the middle of the Site where the MORTGAGE CALCULATOR is located. Also, trying to make the boxes wider, I can only seem to make the email section larger.

    Then site is http://www.braniway.com

    Any help would be much appreciated.

    Thank you in advance!

    Posted 13 years ago on Friday October 29, 2010 | Permalink
  2. The padding is coming from your style.css file on line 1002. It's being applied to all lists in the sidebar. You'll have to edit that or override that with another rule like this..

    #sidebar #gform_wrapper_2 li {padding:0!important}

    You can change the input widths with a new rule added to the end of your style.css file.

    #gform_wrapper_2 .right_label input.medium, #gform_wrapper_2 .right_label select.medium, #gform_wrapper_2 .left_label input.medium, #gform_wrapper_2 .left_label select.medium {width:60%}

    Posted 13 years ago on Saturday October 30, 2010 | Permalink