在html的li中出现的箭头

在html的li中出现的箭头,html,css,wordpress,responsive-design,adjustment,Html,Css,Wordpress,Responsive Design,Adjustment,我们正试图添加一个新的价格表,我们的网站,但当我们添加它,我们得到一些随机箭头出现 要移除这些箭头,我需要做什么 谢谢 链接此处: Ben它是一种添加在伪元素上的字体: .main ul li:before、.more:before、.comment回复链接:before、.comment编辑链接:before 第554行 fontname:bulletsregular注释掉在第554行的style.CSS中找到的CSS media="all" .main ul li:before, .more

我们正试图添加一个新的价格表,我们的网站,但当我们添加它,我们得到一些随机箭头出现

要移除这些箭头,我需要做什么

谢谢

链接此处:


Ben

它是一种添加在伪元素上的字体: .main ul li:before、.more:before、.comment回复链接:before、.comment编辑链接:before

第554行


fontname:bulletsregular

注释掉在第554行的style.CSS中找到的CSS

media="all"
.main ul li:before, .more:before, .comment-reply-link:before, .comment-edit-link:before {
/* content: "g"; */
/* font-family: 'bulletsregular'; */
如果您需要其他项目符号,请参阅@Hive的解决方案将其添加到css中:

.main ul li:before, h1 span, h2 span, h3 span, h4 span, .highlight, h5, h6, cite, h1:after, h2:after, h3:after, .main-container a:hover, .more:before, ol > li:before, .cta a:hover, .error[generated=true], span.wpcf7-not-valid-tip, div.wpcf7-response-output, .footable.breakpoint > tbody > tr > td.expand:before, ul.social-link a:hover, #nav ul li a:hover:before, ul.page-numbers .current, #nav li a:hover, li.current-menu-ancestor a, #nav li li.current_page_item > a, ul.comments h5 a, .comment-reply-link:before, .comment-edit-link:before, #cancel-comment-reply-link:before, .link-pages p a, #wp-calendar a, .logo-text:after, .widget.widget_nav_menu ul li a:hover, .statistics li h4, ul.filters li.active a, .toggle-btn.active, .accordion-btn.active, .sc_accordion-btn.active, ul.tab-nav li.active, h3.v_nav.v_active, .foot-widgets a:hover, .foot-widgets a:hover b, .tweets cite:before, li.tweet .meta:before, .icon-thirds li:hover em:before, .boxed ul.social-link a:hover, .boxed h5, .sitemap li a:hover, .shipping_calculator h2 a, .woocommerce table.cart a.remove, .woocommerce #content table.cart a.remove, .woocommerce-page table.cart a.remove, .woocommerce-page #content table.cart a.remove, .woocommerce form .form-row .required, .woocommerce-page form .form-row .required, .woocommerce div.product .woocommerce-tabs ul.tabs li a:hover, .woocommerce #content div.product .woocommerce-tabs ul.tabs li a:hover, .woocommerce-page div.product .woocommerce-tabs ul.tabs li a:hover, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li a:hover, .woocommerce .star-rating span:before, .woocommerce-page .star-rating span:before, .woocommerce div.product .stock, .woocommerce #content div.product .stock, .woocommerce-page div.product .stock, .woocommerce-page #content div.product .stock, .woocommerce div.product .out-of-stock, .woocommerce #content div.product .out-of-stock, .woocommerce-page div.product .out-of-stock, .woocommerce-page #content div.product .out-of-stock {
    color: transparent;
}

将以下样式添加到样式表或页面上

若您添加了样式表,那个么在映射该样式表的整个应用程序的其余部分可能看不到它。如果您想从所有的webapp中删除,请在CSS中添加以下样式。但如果您只想从此页中删除,请仅在该页上添加此样式

#plans li:before {
   content: "" !important;
}

也许您可以添加一些代码(HTML/CSS)来帮助我们帮助您。我给你一个提示,这是一个
:在
伪类之前。为什么不移除子弹?它们不是唯一的地方嗨,谢谢它起作用了greathi,我和你一起去了,谢谢