Is it possible to set the size of the background image with CSS?
I want to do something like:
background: url(\'bg.gif\') top repeat-y; background-si
put the below code in the body of you css file background-image: URL('../images/wave-green-plain-colour.jpg') ; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; width:100px;