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.

random image to the left of text

  1. I have a weird blue box showing up to the left of all text and images on my form. I added this to stylesheet.css to eliminate the possible Bullet issue but, it's not working.

    [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
    }

    Here is my URL
    http://highplainsweb.com/web-design/website-builder/

    Posted 11 years ago on Sunday February 17, 2013 | Permalink
  2. The issue is this block in your theme's stylesheet (starting at line 1660):

    [css]
    .postcontent ul>li:before,  .post ul>li:before,  .textblock ul>li:before
    {
       content:url('images/postbullets.png');
       margin-right:6px;
       bottom: 2px;
       position:relative;
       display:inline-block;
       vertical-align:middle;
       font-size:0;
       line-height:0;
    }

    To override that, please add this CSS to your theme's stylesheet:

    [css]
    body .gform_wrapper  ul>li:before {
        content: none!important;
    }

    Screenshot: http://minus.com/lgZQu41IfCsR2

    Posted 11 years ago on Monday February 18, 2013 | Permalink