我必须更改这个css文件中的一些行:
/wp-content/plugins/easy-digital-downloads/templates/edd.min.css
table#edd_purchase_receipt td, table#edd_purchase_receipt th, table#edd_purchase_receipt_products td, table#edd_purchase_receipt_products th {
text-align: left; /*must change to: text-align: right; */
}
我在Style.css文件中添加了下面的代码,但什么也没有发生:
body table#edd_purchase_receipt td, table#edd_purchase_receipt th, table#edd_purchase_receipt_products td, table#edd_purchase_receipt_products th {
text-align: left; /*change to text-align: right; */
}
如何在子主题中覆盖"edd.min.css“文件?实际上,我在子主题中重写Wordpress插件的css文件有问题。这有什么规定吗?
发布于 2016-08-11 12:25:17
您必须确保style.css是在edd.min.css之后被调用的。
https://stackoverflow.com/questions/38895712
复制相似问题