我在wordpress中安装了eshop插件,我被告知我应该隐藏跨度以隐藏标题
这是代码
<ul class="eshop rand"><li class="eshop-product-127"><a class="itemref" href="http://localhost/sab/to-40-gr-mix/"><img ilo-full-src="http://localhost/sab/wp-content/uploads/2013/07/DSC_4171-150x150.jpg" src="http://localhost/sab/wp-content/uploads/2013/07/DSC_4171-150x150.jpg" class="attachment-150x150 wp-post-image" alt="DSC_4171" height="150" width="150"></a><a href="http://localhost/sab/to-40-gr-mix/"><span>to 40 GR MIX</span></a>
我想用那个类(eshop rand)隐藏ul里面的范围
请记住我无法为该范围分配ID
谢谢
答案 0 :(得分:0)
你可以使用这个css类
.eshop.rand span
{
display: none;
}
或
.eshop-product-127 span
{
display: none;
}