So I have been trying to get rid of this link underline and I just cannot seem to figure it out. I have put text-decoration:none; on everything and anything I can think of to try and fix this issue so if anyone has any ideas as to how to get rid of this stubborn underline that would really help! Thank you!
#recentwork {
background-color: #1DA0A3;
margin-left: auto;
margin-right: auto;
text-align: center;
text-decoration: none;
}
#recent{
padding:20px;
text-decoration: none;
}
#recentwork img {
padding: 20px;
width: 200px;
height: 200px;
text-decoration: none;
}
.more{
text-decoration: none;
color:black;
}
.more:hover{
color:white;
}
.titles{
text-decoration:none;
}
.parentdiv{
display:inline-block;
text-decoration: none;
}
@media only screen and (min-width: 760px) {
#recentwork img {
width: 300px;
height: 300px;
text-decoration:none;
}
}
.underline{
text-decoration: none;
}
<section id="skills">
<div id="recentwork">
<h2 id="recent"> Most Recent Work</h2>
<div class="parentdiv">
<a href="http://4vector.com/thumb_data/v4l-132979.jpg" data-lightbox="website" data-title="">
<img src="http://4vector.com/thumb_data/v4l-132979.jpg" width="200px" height="200px">
<div class="underline">
<h3 class="titles"> Web Design</h3></div>
</a>
<a href="" class="more"><h3 > See More</h3></a>
</div>
<div class="parentdiv">
<a href="http://4vector.com/thumb_data/v4l-132979.jpg" data-lightbox="website" data-title="">
<img src="http://4vector.com/thumb_data/v4l-132979.jpg" width="200px" height="200px">
<h3 class="titles"> Photography</h3>
</a>
<a href="" class="more"><h3 > See More</h3></a>
</div>
<div class="parentdiv">
<a href="http://4vector.com/thumb_data/v4l-132979.jpg" data-lightbox="website" data-title="">
<img src="http://4vector.com/thumb_data/v4l-132979.jpg" width="200px" height="200px">
<h3 class="titles"> Print</h3>
</a>
<a href="" class="more"><h3 > See More</h3></a>
</div>
<div class="parentdiv">
<a href="http://4vector.com/thumb_data/v4l-132979.jpg" data-lightbox="website" data-title="">
<img src="http://4vector.com/thumb_data/v4l-132979.jpg" width="200px" height="200px">
<h3 class="titles"> Logos</h3>
</a>
<a href="" class="more"><h3 > See More</h3></a>
</div>
</div>
</section>