I am trying to create a site with a similar background to this website’s.
Does anyone know how it is done?
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.
If you’re talking about the page backround, it’s done by using a large background image n one absolutely positioned div that covers the entire screen, with another absolutely positioned div with a repeating dots background layered over the top.
If you’re talking about the see through effect of the main elements on top of the two bg images, this can be done with either
opacity: .5;/*value*/;orbackground: rgba(125, 125, 125, .5)/*grey half opaque*/.You can take a look for yourself by hitting F12 (in a good browser, IE’s dev tools are shamefully bad) and taking a look at the markup and CSS.