That is just an image with a gradient from top to bottom. Then the image is only 1px wide and I think 1200 pixels high. You only have to create it 1px wide as background properties will automatically repeat unless told otherwise.
Nate:
Thanks for the reply.
I should have mention that I am newbie to Photoshop.
Is it possible to guide me via example (let say gray) on how to do it.
Thank you.
Dré
Goto File > New and set 200px x 200px
Then on your tool palette look for the icon that looks like a gradient. To see where it is push the "G" key. Then when you see where that tool is click and hold that tool and a dropdown will come out of the side. Select gradient. Then choose whatever colors you want in the color pickers near the bottom of the tools palette. If you want just black and white for now press the "D" key.
Then with the gradient tool selected click and drag on your canvas. You will notice that starting and ending in various parts of the canvas will give you a different effect. Also the distance you drag will also affect the type of gradient. Play about with that and see the different ways of getting gradients.
Then to do the background effect goto File > New and set the properties to 1px x 1200px. Do your gradient with your desired colors and then save the image as a .jpg. Don't save as a .gif as you will not get a very nice gradient b/c gif's only support 256 colors. Then in your html simply put this in your page:
<body background="your_image.jpg">
or if you use css you can specify the background in the css document as:
body {
background: url('your_image.jpg');
}
or put it into a style attribute:
<body style="background: url('your_image.jpg');">
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.