Hello, How do I remove the grey box on top of my blog posts that do not have featured images? I used this code:
#top.single-post .big-preview.single-big {
display: none !important;
}
To remove the featured image if the post has a featured image and that works. What CSS can I use to remove the grey box?
Hi ocwebmaster!
Add a display none, to tge following also:
.rounded-container .iconfont, .small-preview .iconfont
and that will fix your issue
Cheers!
Basilis
I tried this but it didn’t work
.rounded-container .iconfont, .small-preview .iconfont{
display: none !important;
}
Hey!
Please use this code
.blog-meta .small-preview {
background-color:transparent!important;
}
Regards,
Vinay Kashyap
Thank you that fixed it!