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.

change font in form description

  1. Please could you tell me how to change the font in my form description to look like my theme font?

    Posted 11 years ago on Monday October 8, 2012 | Permalink
  2. Please post a link to your form and we will be happy to help you.

    If you mean for this page:
    http://ctproductsandservices.com/add-a-listing/

    The form description appeared to be in the same font to me as the rest of your pages. Can you post a screenshot side by side showing the difference?

    You could add this to one of your theme's stylesheets, maybe custom.css:

    [css]
    body .gform_wrapper span.gform_description {
      font-family: "Helvetica Neue",Helvetica,sans-serif;
      font-style: normal;
      font-variant: normal;
      font-weight: normal;
      font-size: 16px;
      line-height: 1.5em;
      font-size-adjust: none;
      font-stretch: normal;
      color: #555555;
    }

    I copied that from line 405 of style.css, which was applied to .entry and .entry p.

    If that does not work for you, please post screenshots showing the difference side by side and let us know what text you would like changed.

    Posted 11 years ago on Monday October 8, 2012 | Permalink
  3. http://ctproductsandservices.com/add-a-listing
    The font in my theme is different then the form.
    I tried to paste a screen shot, but it did not allow me to do it in here.

    The form starts at the description:

    Add Your Listing: Please fill out the form below and submit.

    I put the quote in Custom CSS, but it did not work, maybe I did it wrong:

    /*
    WOO CUSTOM STYLESHEET
    ---------------------
    
    Instructions:
    
    Add your custom styles here instead of style.css so it
    is easier to update the theme. Simply copy an existing
    style from style.css to this file, and modify it to
    your liking.
    .header-widget { width: 100%; }
    body .gform_wrapper span.gform_description {
    font-family: "Helvetica Neue",Helvetica,sans-serif;
     font-style: normal;
    font-variant: normal;
     font-weight: normal;
    font-size: 16px;
     line-height: 1.5em;
     font-size-adjust: none;
     font-stretch: normal;
     color: #555555;
    
    */
    Posted 11 years ago on Monday October 8, 2012 | Permalink
  4. Yeah, your above CSS snippet there is commented out. You'd be looking to have this instead:

    [css]
    /*
    WOO CUSTOM STYLESHEET
    ---------------------
    
    Instructions:
    
    Add your custom styles here instead of style.css so it
    is easier to update the theme. Simply copy an existing
    style from style.css to this file, and modify it to
    your liking.
    */
    
    .header-widget { width: 100%; }
    body .gform_wrapper span.gform_description {
    font-family: "Helvetica Neue",Helvetica,sans-serif;
     font-style: normal;
    font-variant: normal;
     font-weight: normal;
    font-size: 16px;
     line-height: 1.5em;
     font-size-adjust: none;
     font-stretch: normal;
     color: #555555;
    }
    Posted 11 years ago on Monday October 8, 2012 | Permalink
  5. To share an image with us, you need to use an image hosting service or host it on your server, then paste the link here. No images will be embedded here, but we can follow your link to see it.

    Posted 11 years ago on Monday October 8, 2012 | Permalink
  6. Looks like you have wrapped around the shortcode in your post editor? Can you check for that please? Sometimes it gets clicked by accident.

    <code></code></p>
    <p><code></code><code><strong>

    That is from the source of your page.

    I think you need to remove that from the post editor and then take a look at the form again. I don't think you will need the CSS but we can check after you remove this extra markup. If you need help, send a WordPress administrator login to chris@rocketgenius.com and reference this post. Thank you

    Posted 11 years ago on Monday October 8, 2012 | Permalink