How do I change the size and color of our Store information that appears on our invoices? I found where the /admin/invoice.php pulls the STORE_NAME_ADDRESS from, but can't see where to change the attributes of it.
How do I change the size and color of our Store information that appears on our invoices? I found where the /admin/invoice.php pulls the STORE_NAME_ADDRESS from, but can't see where to change the attributes of it.
If I am getting what you are seeking correctly this is in /email where there ae html files that draw on DB info but you can style the html inline
Zen-Venom Get Bitten
Correct me if I'm wrong, but from what I can see those are some type of templates for all the emails that allow you to change what's in the email, but not change any attributes about them.
In my invoice, I'm trying to change only the size and color of our store information (name, address, phone, fax) not remove it or change it's location.
Look in your stylesheet for this declaration:
address - make changes as necessary.
My Bad...I thought that there was an invoice email....
in invoice.php
You can also find in admin/includes/stylesheet.css and change the styling from thereCode:<!-- body_text //--> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="0"> <tr> <td class="pageHeading"><?php echo nl2br(STORE_NAME_ADDRESS); ?></td> <td class="pageHeading" align="right"><?php echo zen_image(DIR_WS_IMAGES . HEADER_LOGO_IMAGE, HEADER_ALT_TEXT); ?></td> </tr>
Zen-Venom Get Bitten