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.

Using WP Themes CSS Style?

  1. Ilya
    Member

    I'm having difficulty understanding how to use the css style my theme already has for the forms. I want to maintain the same look but have no idea how to get it to work. Hope I'm not asking for too much.

    A form that comes with my theme, which is the look I want for my form http://crazysigns.com.au/contact/. This is my form and as you can see it looks like shit haha http://crazysigns.com.au/free-quote/.

    Thanks in advance.

    Posted 13 years ago on Wednesday December 8, 2010 | Permalink
  2. Your form doesn't look right because your theme isn't outputting the form stylesheet. This is most likely because your theme is missing the wp_head() function call in the header.php file *OR* you have CSS output turned OFF in the Gravity Forms Settings page.

    - Check to make sure CSS output is turned ON by going to Forms > Settings in your WordPress navigation.

    - Check to make sure your themes header.php file includes the wp_head() function call. For details on this sett this article:

    http://codex.wordpress.org/Theme_Development

    Posted 13 years ago on Wednesday December 8, 2010 | Permalink
  3. Ilya
    Member

    Thanks, going to try to figure it out now.

    Posted 13 years ago on Wednesday December 8, 2010 | Permalink
  4. Ilya
    Member

    <?php
    ######################################################################
    # PHP scripts
    ######################################################################
    //wp-head hook, needed for plugins, do not delete
    wp_head();
    
    // single post comment reply script by wordpress
    if ( is_singular() ) wp_enqueue_script( 'comment-reply' );
    
    #set the fonts and colors defined at the backend
    $applyCustomFontTo = '#top h1, #top  h2, #top h3, #top  h4, #top  h5, #top  h6, #top  legend, #top .sliderheading, .big_button strong, .dynamicFont';
    $applyBackgroundColorTo = 'div .dropcap2, div .dropcap3, div .dynamicBg, body .boxed, div .button, #top div .pagination a:hover';
    $applyFontColorTo = 'div a, div a:hover';
    
    $k_option['custom']['styling']->set_cufon_font($applyCustomFontTo, $k_option['general']['font_heading']);
    $k_option['custom']['styling']->set_element_background($applyBackgroundColorTo);
    $k_option['custom']['styling']->set_font_color($applyFontColorTo);
    $k_option['custom']['styling']->show();
    ?>

    This is what I have in my head.php & the output of css is on in the settings. The <?php wp_head(); ?> command seems to be present so I'm not sure what to do now.

    Posted 13 years ago on Wednesday December 8, 2010 | Permalink
  5. If you can send us a WordPress admin login for this site via our Contact Us form and reference this forum post we can take a look and determine what exactly is going wrong with the theme.

    Posted 13 years ago on Wednesday December 8, 2010 | Permalink
  6. Ilya
    Member

    Info has been sent.

    Posted 13 years ago on Wednesday December 8, 2010 | Permalink
  7. I have responded via email and corrected the CSS in your theme.

    Posted 13 years ago on Wednesday December 8, 2010 | Permalink