Hi @stewartcartmell
Login to your admin Dashboard and go to Appearance > Customize > Additional CSS and paste below custom CSS code to show the title on top of the featured Image.
.post-main .has-post-thumbnail .entry-wrap .entry-main {
opacity: 1;
-moz-opacity: 1;
filter:alpha(opacity=100);
background-color: transparent;
}
.post-main .has-post-thumbnail .entry-wrap .entry-main p {
opacity: 0;
-moz-opacity: 0;
filter:alpha(opacity=0);
}
.post-main .has-post-thumbnail .entry-wrap .entry-main .entry-title {
color: #fff;
text-shadow: 0 1px 1px rgba(0,0,0,0.5);
}
.post-main .has-post-thumbnail .entry-wrap:hover .entry-main {
background-color: #fff;
}
.post-main .has-post-thumbnail .entry-wrap:hover .entry-main p {
opacity: 1;
-moz-opacity: 1;
filter:alpha(opacity=100);
}
.post-main .has-post-thumbnail .entry-wrap:hover .entry-main .entry-title {
color: initial;
text-shadow: none;
}
Thank you!