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.

Name, Email and checkbox fields not showing

  1. myriaddesign
    Member

    Hi,

    I have tried several times to get my form working. I go through all the steps and preview the form and it looks fine and then when I go to my site the entry boxes/fields aren't showing for name, email and the checkbox for opting into the newsletter. Any thoughts on what might be happening here? I am using the Acquisto theme and MailChimp addon. Thanks.

    my site: http://www.waldportfleamarket.com/contact/

    Posted 12 years ago on Friday October 7, 2011 | Permalink
  2. Not sure exactly what it is yet, but when I turn off the Cart 66 stylesheet the form works properly.

    screenshot: http://bit.ly/nCYgMq

    I'll let you know if I figure out exactly what's causing it.

    Posted 12 years ago on Saturday October 8, 2011 | Permalink
  3. myriaddesign
    Member

    Hi Kevin,

    Were you able to figure anything out with this? Thanks, Jennifer

    Posted 12 years ago on Monday October 10, 2011 | Permalink
  4. Looks like line 62 of the Cart66.css file is floating labels and causing an issue.

    http://i.imgur.com/nX2ym.png

    You can try overriding it with custom rules added to your stylesheet.. something like this should get you started.

    [css]
    
    body #post-content .gform_wrapper label {
    	float:none;
    	width:auto
    }
    
    body .gform_wrapper label.gfield_label {
        float: left;
        display: block;
    }

    You'll have to tweak it from there.. or you can always just remove the offending CSS from the Cart 66 stylesheet.

    Posted 12 years ago on Monday October 10, 2011 | Permalink