Selective removal of .ul list-icon (checkmark)

Perfect responsive WordPress theme to showcase your mobile, iPad or tablet apps.
GK User
Wed Sep 04, 2013 2:56 pm
Hi,

I am using Formcraft for multiple contact forms on my site, e.g. [url]jeanwaucomont.nl/diensten/grafisch-ontwerp/[/url].
As you can see, the default checkmark icon from the Bluap Theme is added, even though list style is set to "none". I would like to remove the icon on my forms, but keep in the default content. ;)
This would require the removal of FontAwesome character "\f00c"; from the formcraft list items.
Suggestions?


Link to Formcraft: http://codecanyon.net/item/formcraft-premium-wordpress-form-builder/5335056
User avatar
Junior Boarder

GK User
Wed Sep 04, 2013 3:03 pm
And here is the quick fix, in case others are experiencing similar problems:
    Set font-family to something else than "Fontawesome"
    Insert a space between the content quotes.
Code: Select all
.content ul li:before, article .intro ul li:before, article .summary ul li:before {
color: #dd5749;
[b]content: " " !important;[/b]
[b]font-family: sans;[/b]
font-size: 13px;
left: 0;
position: absolute;
top: 3px;
}
User avatar
Junior Boarder

GK User
Thu Sep 05, 2013 7:53 am
Hi,

Thanks for your report and fix, but it may affect to main content in some cases, so i think this should be better solution (limited only to your plugin)
Code: Select all
.nform ul li:before {
    display: none;
}
User avatar
Moderator


cron