Looking into your problem, it looks like another small bug. super_invoice.php does not include a call to super_stylesheet.css in the header. Open admin/super_invoice.php and find this around line 58...
Code:
<link rel="stylesheet" type="text/css" href="includes/stylesheet.css">
Make a new line under it and add this line...
Code:
<link rel="stylesheet" type="text/css" href="includes/super_stylesheet.css">
Now then, if you look at the HTML for the invoice, you'll see that the block for the address has a class called invoiceHeading. You'll find that class defined in admin/includes/super_stylesheet.css. Modify to suit your needs.
As for missing images, you're first going to have to determine what you've edited that would impact image displays. By default, the invoice displays the logo in the upper right. You'll find this call line around 104...
Code:
echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT) . '<br />';
I'd start there. Did you mess with zen_image() at all? Are HEADER_LOGO_IMAGE and HEADER_ALT_TEXT defined in your admin configuration section? Does the image actually exist?
Bookmarks