That's because background-image is for the image only, not for specifying the repeat. This is the correct syntax:
Code:
background-repeat: no-repeat;
Also, if you don't want the background behind the search box, you will have to declare it separately for the banner:
Code:
.banner, .search_box {
height: 80px;
font-size: 20px;
font-weight: bold;
color: #FFFFFF;
text-align: center;
padding-top: 20px;
}
.banner {
width: 530px;
padding-left: 20px;
float: left;
text-align: left;
background-image: url(vifeheader4.gif);
background-repeat: no-repeat;
}
Good luck!
Bookmarks