Forum Moderators: not2easy
Thanks for the help
Gady
1. Yes! The background can be achieved by applying a backgound [w3.org] to the body tag, eg:
body {
background-image: url(path/to/image.gif);
}
The logo can be achieved by using a div on every page and again using the background property.
2. The use of CSS wizards or hand coding is a personal decision, but I would recommend hand coding. That way you can keep your CSS trim and clean, and it gives you a good understanding of the language - so if anything goes wrong, you understand the code and can identify and fix the problem.
HTH