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.

Field label text isnt displaying right

  1. the field label text is stacking like this

    "want to
    choose
    different
    caps??"

    instead of showing in a straight line. and it happening on all my forms. how do i change this?

    http://wearthetop.com/wears/baby-bear#tab-attributes

    link to see what i mean

    Posted 13 years ago on Saturday February 11, 2012 | Permalink
  2. This style in your style.css is causing that:

    [css]
    .gform_wrapper .top_label .gfield_label {
    display: block;
    padding-right: 20px;
    width: 100px;
    margin: 5px 0px 4px !important;
    }

    Getting rid of the width should solve it.

    Posted 13 years ago on Saturday February 11, 2012 | Permalink
  3. well i got rid of the width nothing, changes it to 200px nothing, and deleted the whole line and nothing... am i missing something? i am using a child theme, so i went into the parent theme cause its importing the style sheet from that and edited it, and nothing.

    Posted 13 years ago on Saturday February 11, 2012 | Permalink
  4. Looks like your style.css says you should take what you want to change and place it into custom.css and it should override what is in style.css Have you tried that yet?

    Posted 13 years ago on Saturday February 11, 2012 | Permalink
  5. Here what i did i copied it all from the style.ccs and pasted it into the custom.css of the parent theme. and then deleted the width all together and still nothing.

    pic of what i did to be sure im doing it right.

    http://tinypic.com/r/ftk94g/5

    Posted 13 years ago on Saturday February 11, 2012 | Permalink
  6. Instead of deleting the width, try placing: width: auto; or width: auto !important;

    Right now, there is no value there so it is still inheriting the width value from the style.css

    Posted 13 years ago on Saturday February 11, 2012 | Permalink
  7. Yup that was it for w child parent theme (im using woo themes) u have to take the line above and copy it into you child's theme custom.css for anyone else with this prob!, i personally i just made my width longer went from 100px to 400px and that work fine for me :)

    Posted 13 years ago on Saturday February 11, 2012 | Permalink