You have some kind of emailmeform style sheet in there, whose default body styles are overriding your proper ones:
Code:
BODY {
background-color: transparent;
background-image: none;
margin-top: 15px;
}
If you don't know how to deal with that, a quick and dirty fix is to add !important to your main style sheet:
Code:
body {
background-image: url("http://millworksplace.com/images/brick007.jpg") !important;
color: #7E5752 !important;
font: 14px arial,Helvetica,sans-serif;
margin: 0px !important;
padding: 0px;
}
Bookmarks