Access the answers to your technology questions today.
Subscribe Now
30-day free trial. Register in 60 seconds.
What Makes Experts Exchange Unique?
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.
Try it out and discover for yourself.
Subscribe Now
30-day free trial. Register in 60 seconds.
Join the Community
Give a Little. Get a Lot.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Join the Community
by: coreybryantPosted on 2003-11-24 at 08:33:48ID: 9811693
It seems that you want the background image to repeat horizontally & not vertically? You can also then cut down on the background image some. Instead of using it in the BODY tag, put this in the <HEAD>:
ss/css_bac kground.as p
<style type="text/css">
body
{
background-image: url("../img/subback.gif");
background-repeat: repeat-x
}
</style>
That will have the background image repeat horizontally & that it is. http://www.w3schools.com/c
-Corey