Tagged: featured image
We have activated “Single post with small preview image” as single post style — is it possible to (i) suppress the embedded link of the featured image since it does nothing but open the same image, and (ii) do NOT hide the featured image on smartphones? Thanks a lot!
Hey ecoresearch!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
1-
.single .blog-meta {
pointer-events: none;
}
2-
@media only screen and (max-width: 767px) {
.responsive .template-blog .blog-meta, .responsive .post_author_timeline, .responsive #top #main .sidebar {
display: block;
}}
Cheers!
Yigit