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.

CSS for price font size

  1. The price (red) and the bottom total price (green). I see how the CSS has color settings, but I cannot for the life of me figure out how to change the size of the font?

    I tried without success:
    body .gform_wrapper span.ginput_total {color:#060; font-size: 14px}

    I think this is my last CSS battle :-)

    Posted 12 years ago on Tuesday May 17, 2011 | Permalink
  2. Can you share a link to your form page please?

    Posted 12 years ago on Tuesday May 17, 2011 | Permalink
  3. http://www.simplecom.net/order-cloud-server-extreme/

    Sorry I didn't include that :-)

    Posted 12 years ago on Tuesday May 17, 2011 | Permalink
  4. You need to override the rule in your theme stylesheet that sets the font size of any span to 11px (style.css file line 332 )

    try adding this to the end of your theme stylesheet.

    [css]
    #content .post .gform_wrapper li span.ginput_total,
    #content .page .gform_wrapper li span.ginput_total {
    	font-size:30px
    }

    screenshot: http://grab.by/a9zB

    Posted 12 years ago on Tuesday May 17, 2011 | Permalink
  5. I know its not your job to teach CSS, however, the form's control is confusing :-)

    This fixed the Total price, but not the top price. I will keep digging and let you know if I find it with these tips you gave.

    Thanks again for an awesome product and outstanding support.

    Posted 12 years ago on Tuesday May 17, 2011 | Permalink
  6. Got it :-)

    [css]
    #content .post .gform_wrapper li span.ginput_total,
    #content .page .gform_wrapper li span.ginput_total {
            font-size:20px
    }
    #content .post .gform_wrapper li span.ginput_product_price,
    #content .page .gform_wrapper li span.ginput_product_price {
            font-size:20px
    }

    Again MEGA Thank you!!

    Posted 12 years ago on Tuesday May 17, 2011 | Permalink
  7. Yep, you beat me to it. Sorry I missed that on the first pass. Nicely done.

    Posted 12 years ago on Tuesday May 17, 2011 | Permalink