http://rosepetals.se.temp-url.se/
I solved it using absolute positioning on the link in the CSS class woodslink
.woodslink{
position: absolute;
left: 370px;
top: 350px;
}
.links {
float:left;
margin-left:10px;
margin-right:10px;
padding-left:10px;
padding-right:10px;
margin-bottom: 14px;
background-color: #ffffff;
width:260px;
}
<div class="links">
<a href="http://www.student.bth.se/~asfo13/oophp/MovieProject/Embla/webroot/home.php?p=home"><img class="woods" src="woods.jpg" alt="Image from the woods"></a>
<a class="woodslink" href="http://www.student.bth.se/~asfo13/oophp/MovieProject/Embla/webroot/home.php?p=home">Movieproject</a>
</div>
1
solved Link gone missing using CSS and HTML