Hi Chris,
We weren't ignoring you. Sorry for the late reply. We have a spam plugin in place to prevent spam account registrations. It also moderates posts that it feels are spam. It moderated posts in this thread, causing them to not appear until I approved them. That moderation feature is now turned off. I didn't see your reply until I discovered this problem today.
Not sure if you still need an answer. When you open an order in the control panel by clicking anywhere on its record row, and then click the "print friendly" button, the text in that view (below) is actually larger than on the prior page:
example.png
If you still need the text larger, you can try this:
1. Put a copy of the squirrelcart/themes/squirrelcart/order_detail_printable.tpl.php template file into your custom theme folder
2. Open that copy in an editory
3. Find this:
Code:
body {
background-color: #fff;
background-image: none;
font: 12px Tahoma, Geneva, sans-serif;
}
4. Change to:
Code:
body * {
background-color: #fff;
background-image: none;
font: 14px Tahoma, Geneva, sans-serif;
}
Note that there is an asterisk after body and the font size has changed.