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.

OverFlow Not Working for HTML Field Formatting with CSS Class

  1. 3BBB
    Member

    I am trying to use a HTML field to display a block of text for "Terms of Use" on a user registration form with the goal of having a scrolling read-only text box on the form. In terms of dimensions, padding, borders, and background, all of the formatting renders as I would expect, but there is no scrolling and the additional text that does not fit in the text box displays below the box and on top of the field that follows below the HTML field. I have tried different overflow settings in the CSS and nothing changes. Replicated in latest Mac production versions of Safari, FireFox and Chrome in my local environment on MAMP and also on test host installation.

    The HTML field seems oblivious to the CSS setting for overflow.

    Posted 12 years ago on Friday December 30, 2011 | Permalink
  2. Can you post a link to your form so we can check it out.

    Posted 12 years ago on Friday December 30, 2011 | Permalink
  3. 3BBB
    Member

    To respect a client's wishes for confidentiality, posting a link on a support forum is not an option. But, I have emailed Carl Hancock with a link on a separate support issue pertaining the user registration add-on. That link would also allow you to view the registration form and. I can email you the same information sent to Carl if that works better.

    Posted 12 years ago on Friday December 30, 2011 | Permalink
  4. Sounds good, you can email me at rob@rocketgenius.com

    Posted 12 years ago on Friday December 30, 2011 | Permalink
  5. In your .terms-of-use-text class change:

    [css]
    overflow: scroll;

    to:

    [css]
    overflow: auto !important;
    Posted 12 years ago on Wednesday January 4, 2012 | Permalink