Currently updating my website and unable to access the HTML directly.
I'm curious if it's feasible to produce various hover effects for image links within parent divs that share the same name but have different title tags.
Here is the code snippet:
.project-panel .pp-thumb img {
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 170px;
height: 127px;
}
.project-panel .pp-thumb:hover img {
display: block;
-moz-box-sizing: border-box;
box-sizing: border-box;
background: url(http://couill.art/wp-content/uploads/2018/05/Thicc-Girls-thumb.gif) no-repeat;
width: 170px;
/* Width of new image */
height: 127px;
/* Height of new image */
padding-left: 170px;
background-size: contain;
}
<div class="pp-thumb column" data-xl-width="2" data-sm-width="4" data-xs-width="6">
<a href="http://couill.art/project/danger-zone-duplicate-3" title="Danger Zone"><img src="http://couill.art/wp-content/uploads/2018/05/Thicc-Girls-thumb.png" width="200" height="150"></a>
<p class="pp-title"><a data-font="font_dqju2lgtu" href="http://couill.art/project/danger-zone-duplicate-3" title="Danger Zone">Danger Zone</a><span data-font="font_dqju2lgtu">Animation</span></p>
</div>
<div class="pp-thumb column" data-xl-width="2" data-sm-width="4" data-xs-width="6">
<a href="http://couill.art/project/danger-ii" title="Danger II"><img src="http://couill.art/wp-content/uploads/2018/05/chauve-souris-0-00-02-19.png" width="200" height="150"></a>
<p class="pp-title"><a data-font="font_dqju2lgtu" href="http://couill.art/project/danger-ii" title="Danger II">Danger II</a><span data-font="font_dqju2lgtu">Animation</span></p>
</div>
I was able to modify the hover state for all links using the CSS provided, but customizing a different state for each link seems more challenging.
Your advice on this matter would be greatly appreciated :)