有人和我有同样的问题吗?我通过 woocommerce 插件添加最近查看的产品小部件,但产品标题旁边会显示项目符号。我试图在我的自定义CSS中添加几个代码,但我还没有找到解决方案。任何人都可以帮助我吗?
答案 0 :(得分:0)
好吧我添加了这个css代码,在项目符号和产品标题之间留出一些空间,因为我还没有找到完全删除项目符号的解决方案。
.product-title{
padding-left:10px!important;
}
答案 1 :(得分:0)
试试这个。将以下内容添加到自定义CSS
<?xml version="1.0" encoding="UTF-8" ?>
<project>
<target name="checkDir">
<foreach target="zip" param="theFile">
<dirset dir="root" casesensitive="yes">
<include name="**"/>
</dirset>
</foreach>
</target>
<target name="zip">
<zip destfile="root/${theFile}/${theFile}.jar">
<zipfileset dir="root/${theFile}/unpacked/" includes="**" />
</zip>
<echo message="TESTZIP ${theFile}"/>
</target>
</project>
答案 2 :(得分:0)
以下对我有用:
.content ul {
list-style: disc;
}