• Hi,

    I am using DK PDF as a quoting function in the checkout of WooCommerce. For some non apparent reason, the PDF that it generates features bright pink text for the headings that WooCommerce would use (Product, Price, Quantity, Total, Subtotal, Shipping, Total).

    I have tried to use the Custom CSS to change all the font colors to black —
    * {
    font-size: 100%;
    font-family: Arial;
    color: Black;
    }

    Is there anything I can do to force the text to black?

    https://www.ads-software.com/plugins/dk-pdf/

Viewing 1 replies (of 1 total)
  • Plugin Author dinamiko

    (@dinamiko)

    HI kuntzg,

    try this:

    body, html {
        color: black !important;
    }

    if you know the class name, use something like this:

    .my-class {
        color: black !important;
    }

    try it and tell me, thanks.

Viewing 1 replies (of 1 total)
  • The topic ‘Text Color & Woo Commerce’ is closed to new replies.