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.

Title Formatting and Text Sizing issues

  1. Thanks to this forum, I'm about 90% of having my first form ready.

    I do have two questions.

    (1) I'd like to format the title to be an h2 tag. I found a post from 2 years ago that said this wasn't possible. Is that still the case?

    (2) For some reason, my form fields for NAME look cut off at the end. In Safari, the last name is cut. In Firefox, both the first name and last name are cut. Will someone look at this and tell me what I missed? http://motionsplash.com/contact-us/

    Posted 11 years ago on Friday April 12, 2013 | Permalink
  2. Richard Vav
    Administrator

    Hello again,

    For q2 you can modify that earlier css to set the overflow to visible

    #input_1_1_6_container {
    float: none;
    overflow: visible;
    }

    I will have a think about q1

    Regards,
    Richard
    --
    Just another member of the community helping out where I can

    Posted 11 years ago on Friday April 12, 2013 | Permalink
  3. Richard Vav
    Administrator

    You should be able to change the forms title from h3 to h2 using a bit of jquery, you can either add this to the page below the form embed code or you can add it to the form itself inside an html field.

    <script>
        jQuery(document).ready(function($){
            $('h3.gform_title').replaceWith( '<h2 class="gform_title">' + $('h3.gform_title').text() + '</h2>' );
        });
    </script>

    Regards,
    Richard
    --
    Just another member of the community helping out where I can

    Posted 11 years ago on Friday April 12, 2013 | Permalink
  4. Thanks yet again!

    For q1, I could only get it to work by putting the code into an HTML element for the form. Once I did that, the title converted nicely to an h2 tag. From there, styling was easy.

    Posted 11 years ago on Friday April 12, 2013 | Permalink