TRACEYMARYLAND
Programmer
I have a report when i go to print the Bgcolor in the tables will not be displayed
css
a {
color: #3366CC;
text-decoration: none
}
body {
background-color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
line-height: normal;
color: #336699;
margin-top: 0.1em;
margin-right: 0.1em;
margin-bottom: 0.1em;
margin-left: 0.1em
}
h2 {
color: #666666;
font-size: 12px;
}
h3 {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.0em;
background-color: #666666;
color: #DCDCDC
}
h4 {
color: #000000;
font-size: 10px;
}
table {
color: #FFFFFF
}
td, th {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
line-height: normal;
color: #333333;
font-weight: bold;
}
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px }
ul {
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
list-style-type: square;
list-style-position: outside
}
.BulletBackgroundColor {
color: #FFFFFF
}
.DataColor {
color: #DEDECA
}
.footer {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.167em;
font-weight: bold;
line-height: 1.83em;
color: #333333;
background-color: #CCCCCC
}
.FormBackgroundColor {
color: #CCCCCC
}
.ImageTitleColor {
color: #CCCCCC
}
.LabelColor {
color: #CCCCCC
}
.ListColorEven {
color: #CCCCCC
}
.ListFooterColor {
color: #333333
}
.ListHeaderColor {
color: #333333
}
.ListColorOdd {
color: #DEDECA
}
.ListTitleColor {
color: #CCCCCC
}
.NavigationBackgroundColor {
color: #666666
}
.NavigationColor {
color: #CCCCCC
}
.NewsDataColor {
color: #DEDECA
}
.StoryTitle {
color: #000000;
font-weight: bold
}
.StoryContentColor {
color: #000000
}
.TitleColor {
color: #000000
}
a:hover {
text-decoration: underline
}
tr.ListHeaderColor th {
text-align: left;
}.small {
font-size: 75%;
}
h5 {
font-size: 10px;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #990000;
}
<link href="CSS/Accessible_Design_SF.css" rel="stylesheet" type="text/css" >
Table
<td colspan="3" valign="top" bgcolor="#CCCCCC">Sold To </td>
This table is not being set to Grey when i do print preview
Any suggestions
I tried
<link href="CSS/Accessible_Design_SF.css" rel="stylesheet" type="text/css" media="print">
but then no fonts get set...
Cheers
css
a {
color: #3366CC;
text-decoration: none
}
body {
background-color: #FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
line-height: normal;
color: #336699;
margin-top: 0.1em;
margin-right: 0.1em;
margin-bottom: 0.1em;
margin-left: 0.1em
}
h2 {
color: #666666;
font-size: 12px;
}
h3 {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.0em;
background-color: #666666;
color: #DCDCDC
}
h4 {
color: #000000;
font-size: 10px;
}
table {
color: #FFFFFF
}
td, th {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px;
line-height: normal;
color: #333333;
font-weight: bold;
}
textarea {
font-family: Arial, Helvetica, sans-serif;
font-size: 10px }
ul {
font-family: Arial, Helvetica, sans-serif;
font-size: 1em;
list-style-type: square;
list-style-position: outside
}
.BulletBackgroundColor {
color: #FFFFFF
}
.DataColor {
color: #DEDECA
}
.footer {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.167em;
font-weight: bold;
line-height: 1.83em;
color: #333333;
background-color: #CCCCCC
}
.FormBackgroundColor {
color: #CCCCCC
}
.ImageTitleColor {
color: #CCCCCC
}
.LabelColor {
color: #CCCCCC
}
.ListColorEven {
color: #CCCCCC
}
.ListFooterColor {
color: #333333
}
.ListHeaderColor {
color: #333333
}
.ListColorOdd {
color: #DEDECA
}
.ListTitleColor {
color: #CCCCCC
}
.NavigationBackgroundColor {
color: #666666
}
.NavigationColor {
color: #CCCCCC
}
.NewsDataColor {
color: #DEDECA
}
.StoryTitle {
color: #000000;
font-weight: bold
}
.StoryContentColor {
color: #000000
}
.TitleColor {
color: #000000
}
a:hover {
text-decoration: underline
}
tr.ListHeaderColor th {
text-align: left;
}.small {
font-size: 75%;
}
h5 {
font-size: 10px;
font-style: normal;
line-height: normal;
font-weight: normal;
color: #990000;
}
<link href="CSS/Accessible_Design_SF.css" rel="stylesheet" type="text/css" >
Table
<td colspan="3" valign="top" bgcolor="#CCCCCC">Sold To </td>
This table is not being set to Grey when i do print preview
Any suggestions
I tried
<link href="CSS/Accessible_Design_SF.css" rel="stylesheet" type="text/css" media="print">
but then no fonts get set...
Cheers