Open the style.css file which came with your mboard package.
The following code should be changed:
Code: Select all
BODY, TD {
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}
Change it to this:
Code: Select all
BODY {
color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
background-image: url(http://www.milliondollarhealthman.com/images/Stadium-Pad.gif);
background-attachment: scroll;
background-repeat: repeat-y;
background-position: 0px 71px;
}
TD { color : black;
font-family : Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 11px;
}
The TD styles have been separated from the BODY style because otherwise the background image would also be in each table cell (which would then be displayed different in the different browsers, Internet Explorer vs other browsers)
Just for your information some more information about the possible values for background-images through css files. Because i tried the best to give the right values for your situation in the code block above, but i have not tried it in a browser so i could have done someting wrong.
background-image: url(images/backgroundimage.gif); /* the url to your background image */
background-color: white; /* the background color of the page where no image is shown */
background-attachment: fixed; /* fixed = not scroll with page; scroll = scroll with page */
background-repeat: no-repeat; /* no-repeat = show background image once; repeat-x; repeat-y; repeat */
background-position: center center; /* where should the background image be placed on screen; top left; top center; top right; center left; center center; center right; bottom left; bottom center; bottom right; x-% y-%; x-pos y-pos */
For more explanation visit the following link
http://www.w3schools.com/css/css_background.asp
Greetings,
Henrie