I do not want the thumbnail pictures in front of posts. (also called preview pictures or featured images) How do i remove those?
Hi migduvednok!
Thank you for using the theme!
Do you want to remove the featured images on the blog overview page or in the single page view? When editing the posts, you can enable the “Don’t display image on single post” to hide the featured images. You can also add this on Quick CSS or custom.css:
.div.big-preview.multi-big, a.small-preview {
display: none;
}
Regards,
Ismael
But i want this as a “toggle” (an option) on the theme itself !
(or in a category or post type)
I’m working on making a site where users can log in and post, so the fewer things the user has to edit but still make the default layout, the better.
Hi!
There is a “toggle”, are you using the latest version of Enfold?
Regards,
Josue
Hi!
Please add following code to Quick CSS as well
.archive div.big-preview.single-big {
display: none!important;
}
Regards,
Yigit
Hi!
Please add following code to Quick CSS as well
.blog div.big-preview.single-big {
display: none!important;
}
Regards,
Yigit
Hi Yigit,
it works, thanks for your prompt reply.