Home > Back-end >  Remove extra bullets on Wordpress page - edit CSS
Remove extra bullets on Wordpress page - edit CSS

Time:11-20

I am trying to remove the extra bullets on this Wordpress page which uses the PTSC comparison table plugin.

Image showing the extra bullet point

Below is a link to the page in question

https://www.okkami.com/pages/design-configuration/

I have been trying something like adding the below code to the style.css file, however I am unsure as to what reference to use

 .ptsc_comparison_table_feature_titles li {
      list-style: none;
    }

Thank you

CodePudding user response:

Just add below css so remove it extra bullets .ptsc_comparison_table .ptsc_comparison_table_feature_values li:before{content:none !important;}

  • Related