I have a CSS entry that looks like this:
.header {
background-image: url(\"./images/embouchure.jpg\");
background-repeat: no-repeat;
height:160px
Using only CSS it is not possible at all to add links :) It is not possible to link a background-image, nor a part of it, using HTML/CSS. However, it can be staged using this method:
.wrapWithBackgroundImage {
background-image: url(...);
}
.invisibleLink {
display: block;
left: 55px; top: 55px;
position: absolute;
height: 55px width: 55px;
}