Click to See Complete Forum and Search --> : how do I do this ? (please help)


blue143
02-13-2003, 06:03 AM
i wanna make that so common background effect that many web-site designs have.

http://www.graphikworkshop.com/index.php

browse to the address above, you'll see the white background on the left and right of the template, it has lite stripes all over it.

i know it can be done using a tiny GIF image but i know there is a way to do it using CSS or something..

if anybody have a clue please help.

thanks

Dave

Zach Elfers
02-13-2003, 10:14 AM
You should use a gif image. Make it 10x10 with the line running through the center. Than use CSS to add it:

<style type="text/css">
<!--
body {
background-image:url("stripedBackground.gif");
background-repeat:repeat-x repeat-y;
background-color:#ffffff;
background-attachment:fixed OR scroll;
}
-->
</style>

blue143
02-13-2003, 01:08 PM
it works


thanks alot !