On every Twitter profile page there is fixed background image. How could I do the same on my site?
I would like to find a solution in CSS
On every Twitter profile page there is fixed background image. How could I do the same on my site?
I would like to find a solution in CSS
Use background-attachment: fixed;
in CSS. Example CSS:
body {
background-image: url('bg.png');
background-repeat: no-repeat;
background-attachment: fixed;
}
This http://www.w3schools.com/cssref/pr_background-attachment.asp should be helpful.