Hi @dickytheduck,
You can definitely hide the thumbnail from single posts using some custom CSS. ??
To add custom CSS: Firstly set up a child theme or activate a custom CSS plugin. (If you have Jetpack installed then you can activate its custom CSS module.)
Enter the following snippet in either the editor for your CSS plugin or the style.css file of your child theme:
.single-post .entry-thumbnail {
display: none;
}
.single-post .entry-content {
padding-top: 120px;
}
@media screen and (min-width: 768px) {
.single-post .entry-content {
padding-top: 156px;
}
}
If the above doesn’t work out for you, then please share a link to your site. I based the above on the theme’s demo but CSS can sometimes vary from site to site.
Thanks!