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.

How do I edit the box size in Wordpress

  1. Jane
    Member

    Hi, I need to adjust the size of the entry boxes. Please advise on how I should go about this. I'm not entirely savvy with wordpress, so please be specific with file locations. Appreciated.

    http://eccellenvironmental.com/ (please remove URL when you have viewed)

    http://cl.ly/image/0R1S3S0C1l0I

    Posted 11 years ago on Sunday January 20, 2013 | Permalink
  2. Jane
    Member

    *bump* anyone? I also need to change the line spacing between the fields here: http://eccellenvironmental.com/contact/

    I've sort of fixed the homepage dramas, still I'd like to know for future reference.

    Posted 11 years ago on Monday January 21, 2013 | Permalink
  3. Try changing this:

    [css]
    body .gform_wrapper form .gform_body ul, body .gform_wrapper form .gform_body ul li {
    list-style-type: none!important;
    list-style-image: none!important;
    list-style: none!important;
    background-image: none!important;
    background: none!important;
    padding: 0!important;
    margin: 0!important;
    }

    To this:

    [css]
    body .gform_wrapper form .gform_body ul, body .gform_wrapper form .gform_body ul li {
    list-style-type: none!important;
    list-style-image: none!important;
    list-style: none!important;
    background-image: none!important;
    background: none!important;
    padding: 0!important;
    margin: 10px 0!important;
    }
    Posted 11 years ago on Monday January 21, 2013 | Permalink