Hi @meshaun
Can you please post in your site URL or theme you are currently using? It would be helpful for us to debug.
Thank You!!
CHEERS!!!!
Hello!
Yes, my website is: meshaun.com | theme: Hitchcock
As you can see, for all the posts with the feature image, as soon you get the post, the feature image is displayed too. I don’t want this to be displayed on the post page.
Hi! I used the same theme so i can help you!
You must go to css style and change code:
.flexslider {
position: relative;
overflow: hidden;
}
to this:
.flexslider {
display: none;
position: relative;
overflow: hidden;
}
That’s all!
Hi @meshaun
You can try this CSS:
.featured-media img {
display: none;
}
Note: Please create and customize files of child theme, so your changes will not overwrite on theme update.
CHEERS!!
@ migochi : Thank you for the reply but this still displays the image.
@ sanjog: Many thanks because this worked 🙂
I will now learn about Child Themes because I only edited the main theme for now.