To add your background (1024 x 768 or 800x 600) on most themes under function themeheader, you'll find the body tag, change the body to something like this
|
Code:
|
echo "<body background=\"themes/YOURTHEME/images/YOURIMAGE.gif\" bgproperties=\"fixed\" topmargin=\"0\" leftmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">"; |
then in your style.css in the style folder add the lines
|
Code:
|
BACKGROUND-ATTACHMENT: fixed;
BACKGROUND-REPEAT: no-repeat; |
into body style, this make your image non repeatable.
as for the blocks with opacity simply add a class into your css, example
|
Code:
|
TD.blocks {
FILTER: alpha(opacity="80");
BACKGROUND-COLOR: #dddddd
} |
then go to your blocks.html or if its in theme.php give the blocks that class, which in this case i named it blocks. hope this helps.