Below CSS code will repeat background image only Horizontally.
repeat-x CSS background image property will repeat a background image only Horizontally.
<style>
body
{
background-image:url('../images/horizontal_bar.png');
background-repeat:repeat-x;
}
</style>