2014-06-21 44 views
-4

我们正试图添加一个新的定价表到我们的网站,但是当我们添加它时,我们得到一些随机箭头出现?箭头出现在li的html

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

谢谢。

链接在这里:http://www.towersdesign.co.uk/price-error/

+1

也许你可以添加一些代码(HTML/CSS),以帮助我们来帮助你。我会给你一个提示,这是一个':之前'伪类。 – putvande

回答

0

注释掉这个CSS在style.css中发现上线554

media="all" 
.main ul li:before, .more:before, .comment-reply-link:before, .comment-edit-link:before { 
/* content: "g"; */ 
/* font-family: 'bulletsregular'; */ 

如果需要子弹别处,看到@蜂房的解决方案

+0

嗨,我已经走了你的,谢谢 – user3763262

0

其字体至极是一个伪元素加入: 。主要UL李:之前,更多:之前的.comment回复链接:之前,的.comment编辑链接:前。

线554

字体名:bulletsregular

0

添加您的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; 
} 
+0

为什么不删除子弹? – mplungjan

0

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

如果您添加了样式表,它可能对您映射该样式表的整个应用程序的其余部分不可见。如果你想从整个webapp中删除,请在CSS中添加以下样式。但如果你只是想从这个页面中删除只在页面上添加此样式。

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

See the Screenshot

+0

这不是他们唯一的地方 – mplungjan

+0

嗨,谢谢它运作良好 – user3763262