Home Forums Basel support forum Featured image in posts, date and categories

Featured image in posts, date and categories

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #91328

    roxpox
    Participant

    Hi, I have a few adjustments I would like to do to my template and wonder if you could help me out please:

    1- I would like to Remove the featured image from blog posts (but not from thumbnails)… I would like for all the posts to start from the title area without the featured image on top

    2- Remove dates, categories, and author from blog thumbnails and blog posts in the masonry grid… I literally just want a clean look with thumbnails and the title

    3- Is there a way to have the masonry grid with all the thumbnails aligned?

    Thank you for your help!

    Attachments:
    You must be logged in to view attached files.
    #91373

    Hello,

    Thank you very much for choosing our theme and for contacting our support.

    This is possible to do with custom CSS:

    /*delete the featured image*/
    
    .blog-post-loop.post-single-page .entry-thumbnail {
    display:none;
    }
    
    /*delete the date on post and on grid*/
    
    body .blog-post-loop .post-date {
        display: none;
    }
    /*title*/
    .blog-post-loop .entry-title {
        margin-top: 40px;
    }
    /*author*/
    .meta-author{
        display: none!important;
    }

    Add this code to the Theme Settings > Custom CSS > Global

    Best Regards

    #91909

    roxpox
    Participant

    Thanks for your help, the code you provided works partially. For some reason it doesn’t seem to be working correctly with the masonry grid option (it does sort of work with the default option); while using masonry option “categories” and “date” are still showing in thumbnails and sigle posts. What can I do to fix this?

    Attachments:
    You must be logged in to view attached files.
    #91967

    Hello,

    Please provide your site admin access.

    Best Regards

    #92333

    roxpox
    Participant

    ok, thanks!

    #92389

    Hello,

    Please replace the code with this one:

    /*delete the featured image*/
    
    .blog-post-loop.post-single-page .entry-thumbnail {
    display:none;
    }
    
    /*delete the date on post and on grid*/
    .post-date {
        display: none!important;
    }
    
    .meta-post-categories {
       display: none!important;
    }
    
    /*title*/
    .blog-post-loop .entry-title {
        margin-top: 40px;
    }
    /*author*/
    .meta-author{
        display: none!important;
    }

    Best Regards

    #92615

    roxpox
    Participant

    THANKS! that worked out 🙂

    #92656

    You are welcome! If you have any questions please feel free to contact us.

    Best Regards

Viewing 8 posts - 1 through 8 (of 8 total)

The topic ‘Featured image in posts, date and categories’ is closed to new replies.