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.

Use selector in the head title

  1. Hi! I want to use a selector just for the main title of the form, not for all the form. I can choose one, for example, for ecah part of the form, like the breackpage title, but I can do it just for the head title. Please, Help!

    http://conejocojo.com/contacto

    Posted 12 years ago on Wednesday August 10, 2011 | Permalink
  2. I'm not sure what you're talking about. Are you trying to select the form title for manipulation with CSS? Are you wanting to style that like the section break? Please clarify for me.

    Also, the URL you supplied returned a 404 page. http://bit.ly/oRd8lS

    Posted 12 years ago on Wednesday August 10, 2011 | Permalink
  3. Yes, sorry, this is the correct url: http://conejocojo.com/contact/

    I want to aplly to the title a custom css class name, in order to change it, like the page break, but when i add a class name, it aplies to all the form, not only to the title class name.

    Thanks!

    Posted 12 years ago on Wednesday August 10, 2011 | Permalink
  4. There's an example of how to target the form title properly in the documentation. See section 2.2

    http://www.gravityhelp.com/documentation/page/CSS_Targeting_Samples

    my test CSS

    [css]
    body .gform_wrapper .gform_heading .gform_title {
        color: red;
        font-size: 2.5em;
        border-bottom: 1px dashed #ccc;
        margin-bottom: 40px;
        padding-bottom: 10px;
    }

    screenshot: http://bit.ly/qC2ohi

    Posted 12 years ago on Wednesday August 10, 2011 | Permalink