Forum Moderators: not2easy
thanks,
Wicky
Holland
[edited by: jatar_k at 7:20 pm (utc) on July 22, 2005]
[edit reason] sorry no urls [/edit]
With a little bit of masking, creating a gradient layer, and a blur layer and playing with their respected opacities would be the way I would go about it. Again, in Photoshop. Sorry, I do not know Paintshop :0(
-- Zak
I see what you meant now...
They are using CSS to do this. So I will give you the basic CSS and image instructions to do a layout like this:
First open Paintshop, and create a new image, size 80 pixels wide by 1 pixel tall. Now put a generic gradient in, dark side to the right.
Name this image bg_left.gif
Next create test.html with your favorite text editor and place the following code inside:
<html>
<head>
<title>Three Column CSS Layout with Header</title>
<style type="text/css">
body
{ margin-top: 0;
margin-bottom: 0;
margin-left: 0;
margin-right: 0;
padding-left: 0;
padding-right: 0;
}
#left {
position: absolute;
left: 0px;
top: 0px;
width: 80px;
height: 300;
background: white url(bg_left.gif);
}
#center {
top: 0;
margin-left: 80px;
margin-right: 80px;
background-color:#fffffff;
border-style: solid;
border-width: 1px;
height: 300;
text-align: center;
}
#right {
position: absolute;
right: 0px;
top: 0px;
width: 80px;
height: 300;
background: white url(bg_right.gif);
}
#main {
border-style: solid;
border-width: 2px;
}
</style>
</head>
<body>
<div id="left"></div>
<div id="center">
Your content here
</div>
<div id="right"></div>
</body>
</html>
Now play with bg_left.gif until you get the effect you want. Just edit it, and save over the old one. Once you get it right, rotate it 180 degrees and save as bg_right.gif.
These are the basics on how it is done.. I hope this helps..
-- Zak