Thanks a lot Timo!
I have got my page looking like this http://www.getouttv.com/sample.JPG .My code now looks like this:
/* PAGE BACKGROUND */
/* background color for the header at the top of the page */
.HeadBg {
}
.containermaster_blue{
background-color:transparent;
}
.containermaster_blue{
background-image: url(nils.jpg);
}
.ControlPanel {
}
/* background/border colors for the selected tab */
.TabBg {
}
.LeftPane {
}
.ContentPane {
}
.RightPane {
}
/* text style for the selected tab */
.SelectedTab {
}
/* hyperlink style for the selected tab */
A.SelectedTab:link {
}
But I would like the picture to lay behind each of the modules, not in them. (with colour in the modules instead.) How would I code that?
.pagemaster {
background-image: url(nils.jpg);
}
.HeadBg {
}
Does not work, because that only changes the page body background, which is outside of the container. I only display the container on my site, and therefor wish to put a background image to the container. Anyone?