Hello Burfodus,
I'm not sure why you're using the
pre tags and your div.details cannot be enclosed in <pre>
The main issue with your images is you seem to be mixing regularly styled
background properties with shorthand.
Here are two correct ways of doing it that you can compare to yours.
One -
Code:
BODY {
background-image:url('http://www.zakscustomcues.com/modules/zakscustom/images/email/bg.jpg');
background-color:#3B3330;
background-repeat:repeat-x;
margin:0px;
padding:0px;
}
#header {
background-image:url('http://www.zakscustomcues.com/modules/zakscustom/images/email/header.jpg');
background-repeat:no-repeat;
height:153px;
width:944px;
border-bottom:1px solid #9b927e;
}
Two -
Code:
html, body {
margin: 0;
padding: 0;
}
body {
background-image: url('http://www.zakscustomcues.com/modules/zakscustom/images/email/bg.jpg');
background-repeat: repeat-x;
background-color: #3b3330;
}
#header {
height: 153px;
width: 944px;
background: url('http://www.zakscustomcues.com/modules/zakscustom/images/email/header.jpg');
border-bottom: 1px solid #9b927e;
}
#content {
font: 18px Arial;
color: #99907c;
padding: 20px 0px 0px 60px;
max-width: 700px;
}
h2 {color:#FAFAF5;}
PRE {color: #99907c;}
.details {color: #c6a15f;}
And I still suggest styling your text with normal text styling and not pre tags.