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 problem

  1. I think this issue has been addressed in previous posts but I didn't find anything specific to my problem so I'm posting a new thread (I apologize if this has been addressed previously). My form is located here:

    http://www.thewebmonsters.com/jb/listing-information

    As you can see there is a little arrow icon that is placed in front of each form field that should not be there. I have looked into my theme's css file and actually removed the 4 instances of the icon being called and it still didn't remove it so I'm a little confused. The theme I am using is a Studiopress theme (Corporate). I cannot find where to edit the code to remove those icons. Please help.

    Posted 14 years ago on Tuesday March 23, 2010 | Permalink
  2. Check out the first FAQ item, it should be what you're looking for.

    http://www.gravityhelp.com/frequently-asked-questions/faq-styling/

    Posted 14 years ago on Tuesday March 23, 2010 | Permalink
  3. The issue is your theme is adding this to all ul li elements within the post.

    It is in your themes stylesheet (style.css) and it is defined here:

    .post ul li
    background: url(http://www.thewebmonsters.com/jb/wp-content/themes/corporate_20/images/arrow.gif) no-repeat;
    margin: 0px 0px 5px 0px;
    padding: 0px 0px 0px 15px;

    You will need to modify that. The forms are inheriting it from here.

    Posted 14 years ago on Tuesday March 23, 2010 | Permalink
  4. Just a note, if you remove the arrow.gif reference, it's going to remove that from all of your lists.. if you don't want that, just use the form specific CSS shown on the FAQ page and it will disable that styling on your forms only.

    Posted 14 years ago on Tuesday March 23, 2010 | Permalink
  5. Thanks Kevin that worked perfectly. I appreciate the quick responses.

    Posted 14 years ago on Tuesday March 23, 2010 | Permalink

This topic has been resolved and has been closed to new replies.