Is this the effect you're looking for? It uses the repeating image for a background, then positions the non-repeating image, with the text over it.
Code:
<style>
div#header {
background:#2C55A7 url(../images/RoadMap1_repeat.jpg);
background-repeat: repeat;
}
.picture {
position: relative;
height: auto;
width: auto;
left: 25px;
top: 0;
}
div#text {
position: relative;
height: auto;
width: auto;
left: 25px;
top: -40;
}
</style>
<div id="test"><img class="picture" src="../images/RoadMap1.jpg"><div id="text">Any text you want to put in the header</div></div>
Bookmarks