timtecsa Hi
The background image is the same as shown in the image link url given by you however certain part of the image is being hidden behind the container grouped div which already has background color property assigned to it and also, you have assigned the similar bg image to the div given below due to which it is showing twice:
You can add this too in similar css file:
.section1 .hero-unit {
background: transparent;
}
Further, You can change this :
.section1 {
background: #000 url(http://www.printpartnerhk.com/images/ypp_header.jpg);
}
to
.section1 {
background: #000 url(http://www.printpartnerhk.com/images/ypp_header.jpg) no-repeat 50% 0;
}
if you dont want the image to repeat and adjust 50% value accordingly