How to get a tiled bg like the MM site?

Hey peoples ;).

Was just wondering if anyone knew how they got the grey gradient background on the macromedia site to resize so well? www.macromedia.com …Ive checked the source and I cant seem to find how they did it, all I know is that the background image is 1100px H x 1px W…

Basically Im trying to sit my flash movie (which doesnt resize) centred on a background (which fills the page). I figured publishing it as “windowless and transparent” and sitting it within a div layer is the only way?

PLease help. Thanks in advance :slight_smile:

Eh… I’m sure this has been answered b4 anyway… use CSS… make it your BG and tile only horizontally, and make the BG color the color of the bottom color in your gradient.

OK, thanks I’ll have a look into css options then. I guess now i think about it this question is probably in google somewhere! :wink:

Add this to your body tag:

background-image: url("…/images/backgroundFade2.jpg");
background-color:#333333;
background-repeat:repeat-x;

Where the URL points to the image that fades from one color to another. And the background color is the color at the bottom of the fade.