Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #593525

    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?

    #593533

    Hi ocwebmaster!

    Add a display none, to tge following also:
    .rounded-container .iconfont, .small-preview .iconfont

    and that will fix your issue

    Cheers!
    Basilis

    #593615

    I tried this but it didn’t work

    .rounded-container .iconfont, .small-preview .iconfont{
    display: none !important;
    }

    #594324

    Hey!

    Please use this code

    .blog-meta .small-preview {
         background-color:transparent!important;
    }
    

    Regards,
    Vinay Kashyap

    #594383

    Thank you that fixed it!

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Remove Grey Box on Posts’ is closed to new replies.