Hi I’m not too sure how to create the attached image effect where the right hand side is my main content and it shades onto my left sidebar which has a gradient effect downwards.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Check this out: CSS3 gradient Generator, pick the colors and generate the code, then add it to the
bodyin your CSS (Or whatever element you want it on).For the shadow from your main content use:
And also check out CSS3 Box-shadow.
Also, because not every browser supports the
box-shadowyet (IE), you can use border images. But IE doesn’t suppport that either so, what I did on a site was to just make a 1px high PNG image of the shadow and set it as the background to my wrapper div, repeated it down/up (can’t remember if that’s X or Y) and it worked fine 🙂Hope some of that helps.