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.

Bullet Points Showing in Chrome and Mozilla Browsers

  1. nivelerua@gmail.com
    Member

    Hello,

    I recently purchased the plug-in but when I load the page using Chrome or Mozilla, I'm seeing bullet points.

    Link: http://www.tekborn.com/contact/

    Scheenshot:
    http://www.tekborn.com/images/Chrome.bmp
    http://www.tekborn.com/images/InternetExplorer.bmp
    http://www.tekborn.com/images/Mozilla.bmp

    Thank you!
    Levin

    Posted 11 years ago on Monday January 7, 2013 | Permalink
  2. The bullets are background images being added by your theme's screen.css stylesheet on line 154:

    [css]
    ul li {
    	padding-left:15px;
    	background:url(../images/bullet.png) no-repeat;
    	background-position:0px 8px;
    }

    You need to override that. Please add this to your theme's stylesheet (screen.css or style.css or wherever your theme provider suggests making custom CSS changes):

    [css]
    body .gform_wrapper form .gform_body ul,
    body .gform_wrapper form .gform_body ul li {
    	list-style-type: none !important;
    	list-style-image: none !important;
    	list-style: none !important;
    	background-image: none !important;
    	background: none !important;
    	padding: 0 !important;
    	margin: 0 !important;
    	border: none !important
    }

    This is detailed in the FAQ:
    http://www.gravityhelp.com/question/why-is-my-form-showing-up-with-list-bullets/

    Posted 11 years ago on Tuesday January 8, 2013 | Permalink
  3. nivelerua@gmail.com
    Member

    Thank you Chris! It fixed the display and the bullets are gone. But If you to check the forms again, the spacing on the header and the Name is gone.. Same with the company information and Company Name.

    http://tekborn.com/contact

    Thank you again, Chris!

    Posted 11 years ago on Tuesday January 8, 2013 | Permalink
  4. Which words are too close to which fields? I'm sure we can help with the spacing if we know which elements you want to target specifically. Here is a screenshot in Firefox on OSX: http://minus.com/lw1tNU2x9YmRM

    UPDATE: trying to load the page multiple times in different browsers resulted in a blank page with the word 'error' on it.

    Posted 11 years ago on Tuesday January 8, 2013 | Permalink