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.

Form width : too short ! How could i change the width?

  1. Rubiwane
    Member

    I m novice and i don t want to touch CSS if i m not sure.
    My form is here:
    http://rt2012-attestation.com/test-formulaire-css/
    Is anyone could help me please?

    It s not beautiful... :/

    Posted 11 years ago on Monday January 14, 2013 | Permalink
  2. Please add this to one of your theme's stylesheets to override the width:

    [css]
    body .gform_wrapper {
        width:100%!important;
    }
    Posted 11 years ago on Monday January 14, 2013 | Permalink
  3. Rubiwane
    Member

    Thanks you very much you re the boss.

    Rub

    Posted 11 years ago on Monday January 14, 2013 | Permalink
  4. Rubiwane
    Member

    A last question/
    On my page there s a problem with the colonne:
    http://rt2012-attestation.com/test-formulaire-css/

    At "Description sommaire"
    The last colonne on the right is down, she doesn t want to align.

    Have you got a idea about it ?

    Posted 11 years ago on Monday January 14, 2013 | Permalink
  5. In this stylesheet http://rt2012-attestation.com/wp-content/themes/dt-nimble/css/style.css?ver=3.5 on line 233, there is this rule causing the problem:

    [css]
    ul li {
        padding: 0 0 0 17px;

    That left padding is what is throwing things off. Please add this to the same stylesheet you used last time and your columns will align properly:

    [css]
    body .gform_wrapper ul li {
        padding-left:0px;
    }
    Posted 11 years ago on Monday January 14, 2013 | Permalink