Ok, the tree background isn't all that hard to do, actually, but your design is going to have to be a fixed width to pull it off.
Use the trees on either side of a BLANK white space (where your page content will go) as a background on a container #div, the ENTIRE graphic, trees on both sides with a white gap in the middle. set to repeat:none or to repeat only vertically. Make the body background color that same light green.
Use your #wrapper just as you have, fixed width and centered, it will be 'on top' of the #container div holding your tree background.
In your CSS you would need the following:
Quote:
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 12pt;
font-size:14px;
color: #000000;
margin: 0px;
text-align: justify;
background: #DAFAD1;
}
#container{
background: url(trees.jpg) center top no-repeat;
}
|
In your HTML, add <div id="container"> above <div id="wrapper"> and add the extra closing div at the bottom.
A couple of other things:
Set your #wrapper to position: relative
- background-repeat: repeat - is not necessary as repeating in both directions is the default.
- Do not use PX for font sizing, use % or em.
Why are you using a TABLE for the top section ?? Not necessary, can be done with CSS.
- for your top links, use an unordered list.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
"Using or working with IE is like having to wear a 1970's polyester suit with pantyhose and a girdle, to work everyday"
Carolina Corvette Club
|