
Vader |
Hi Omar,
The CSS needed to create a background image that doesn't repeat vertically but does horizontally is as follows:
<style>
#content {
background-image: url(/images/imagename.gif);
background-repeat: repeat-x;
}
</style>
An example of how to implement this is:
<div id="content">Your content area where you will have your CSS background scroll horizontally only</div>
Vader
Monday, 30th November 2009
| Votes: |
|
20 |
|
12 |
|