Hello @tanchev,
Try and go to Profile Builder -> General Settings and hit Save Changes again.
If that doesn’t fix the issue, add the following CSS on your website:
.wppb-user-forms ul li {
list-style:none;
}
You can add it by going to Appearance -> Customize -> Custom CSS.
Let me know if it works !
Regards.
That is the problem itself, in your plugin profile builder/assets/css/style-front-end.css
it has the line code .wppb-user-forms ul li with list-style: none;
In internet explorer everything is ok i mean its beautiful, but in chrome and opera its like this:

and i dont know what is the problem. Can it be something with the theme? If it is do you think i should add the code that you told me in the theme files?
btw: i added the code in the custom css option in wp, but it stays the same.
-
This reply was modified 8 years, 10 months ago by
tanchev.
Hello @tanchev,
Yes, I am aware that we already remove the bullet lists inside the stylesheet that we provide with the plugin.
This problem is caused by the CSS files of the Theme that you are using, they are overwriting our rule.
Add the code with !important if it doesn’t work like that. Ex:
.wppb-user-forms ul li {
list-style:none !important;
}
It should work.
Regards.
You rock, as we smite players use to say :).
Thank you very much for the assistance you are great.
Best Regards!