• Resolved MoonDog

    (@moondog)


    Hello:

    I’m trying to locate the CSS that controls the solid black background on the invoice and packing slip where Product, Quantity and Price are located. I want to remove the black background and revise the heading color.

    Please point me in the right direction.

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hi! You can change the header color with this CSS:

    
    .order-details thead th {
        color: black; /* this is the text color of the header row */
        background-color: #ccc;
        border-color: #ccc; /* make this the same color as the background color */
    }
    

    If you have more questions like this, you can temporarily enable HTML output in the Status tab of the PDF Invoice settings, which will let you inspect the HTML in your browser.

    Hope that helps!
    Ewout

    Thread Starter MoonDog

    (@moondog)

    Thank you.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘CSS Question’ is closed to new replies.