0

I have to change some lines in this css file:

/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; */
}

I added below code in Style.css file, but nothing happened:

   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; */
}

How can I override "edd.min.css" file in my child theme? Actually, I have problem with overriding Wordpress plugins' css files in child theme. Is there a rule for this?

Davoud
  • 2,576
  • 1
  • 32
  • 53

1 Answers1

0

You have to make sure that style.css is getting called after edd.min.css.

spoq
  • 193
  • 2
  • 9