CSS:
body {
background: url(\"ninabg.jpg\") left top no-repeat;
background-size: 100% auto;
}
.image {
background-repeat:no-repeat;
background-image
Ok, here it is,
instead of wrapping divs or spans in anchor for image links use just anchors e.g.
if you using element with background image you must set both width
& height
and display
property to block
or inline-block
if element is not by default block or inline block level element.
.slo,
.eng {
background-repeat:no-repeat;
position:absolute;
display: block;
width:5%;
height:2%; /* You forgot to set height */
bottom:10%;
}
.slo {
background-image:url("slo.png");
right:21%;
}
.eng {
background-image:url("eng.png");
right:12%;
}