Hi.
I want to do background like this one:
http://www.maximumasp.com/products/sharedHosting/
It does not repeat if you go to the bottom of the page.
How?
Thanks
Printable View
Hi.
I want to do background like this one:
http://www.maximumasp.com/products/sharedHosting/
It does not repeat if you go to the bottom of the page.
How?
Thanks
The CSS property background-repeat controls the repeat properties of the background of an element.
That site there repeats the same background across the x axis. That can be done using repeat-x setting. Therefore just add this css code to the information for the correct element.
Code:background-repeat: repeat-x;
Remember to set the background-color to the finishing fade colour of the element so that there is a seamless join :)