[Pro] printing pages with white text on dark background.

Text printed from this site ( http://www.iam-ministries.org ) appears light grey. Although this is legible I would prefer that the text was black. Does anyone know a way to make text default to black for printing?
Thanks.

  • Chris

freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

You will need to set up a ‘Print’ style sheet to do this properly.

David


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Add this to your page in the before /head part of Page / HTML Markup:

<style type="text/css" media="print">
#PageDiv * {
    color: #000 !important;
    background-color: #fff !important;
}
</style>

See what that does for you.

Walter


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Walter,
This couldn’t be more straightforward and works a treat! Thanks.

  • Chris

freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options