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.

Spacing Issues

  1. I read some of the other topics about spacing issues but I could not find anything about the '4 line fix' that gets mentioned.

    Here is an example of my problem:
    - http://shiftselling.com/book/ceo

    Look at the spacing between the Name fields and the descriptions and the two choices for the book format.

    Thanks!

    Posted 12 years ago on Saturday January 28, 2012 | Permalink
  2. It's coming from your style.css file (line 89) which sets a 24px bottom margin to the bottom of all input elements in the "entry-content" container.

    [css]
    .entry-content input {margin: 0 0 24px 0;}

    You should be able to override that with some more specific CSS like the example below. You would put the new CSS at the end of your theme's style.css file.

    [css]
    .entry-content .gform_wrapper input {margin-bottom: 0 !important}

    screenshot: http://bit.ly/wpy0Hy

    Posted 12 years ago on Saturday January 28, 2012 | Permalink