I am usually not that thick with css but everything I change in the css file will change but the content-background. I remains white whatever I do.
Here is what I changed it to:
/* COMMON STYLE
——————————————————— */
* {
margin: 0;
padding: 0;
}
body {
color: #918879;
background: #ECECDE;
font-family: “Trebuchet MS”, Arial, sans-serif;
line-height: 150%;
}
body#bd {
background: url(../images/body-bg.jpg) top repeat-x;
background-color: #fbfbf6;
}
body.contentpane {
width: auto; /* Printable Page */
margin: 1em 2em;
background: #ECECDE;
color: #918879;
font-size: 12pt;
font-family: serif;
line-height: 140%;
}
What am I doing wrong? Is there something else I need to change ? I can’t find what that should be :-[