Okay
  Public Ticket #1390795
Remove excerpt + replies from Salient recent post (default style)
Closed

Comments

  • teachy started the conversation

    Is it possible to show the build-in recent post feature with default style, but without the excerpt and the number of comments and (if possible) a border around the box?? 

    It looks like this now http://alturl.com/2s9b9

    but I would love to get more like this:  http://alturl.com/b8jj9  (same website but by using a plugin)

  •  9,016
    Tahir replied

    Hey,

    Please provide the page url so that i can write up the custom css for whats possible.

    Thanks


    ThemeNectar Support Team 

  • teachy replied

    Thanks for your reply, the page URL is the same as in my first message: http://alturl.com/2s9b9

  •  9,016
    Tahir replied

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    .blog-recent.columns-3 .post .excerpt {
        display: none !important;
    }
    .blog-recent.columns-3 .meta-comment-count {
        display: none !important;
    }
    .blog-recent.columns-3 .post {
        border: 1px solid #000;
    }
    .blog-recent.columns-3 .post-header {
        margin-bottom: 0px !important;
    }

    Thanks


    ThemeNectar Support Team 

  • teachy replied

    That worked, however it also effected the 'List with featured First row' lay-out I am using on the home page of the website. The borders are not equal lined out and on that page I DO want the excerpt. 

    Is there a way to make your css work only for the Default lay-out?

  •  9,016
    Tahir replied

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    .page-id-8225 .blog-recent.columns-3 .post .excerpt {
        display: none !important;
    }
    .page-id-8225 .blog-recent.columns-3 .meta-comment-count {
        display: none !important;
    }
    .page-id-8225 .blog-recent.columns-3 .post {
        border: 1px solid #000;
    }
    .page-id-8225 .blog-recent.columns-3 .post-header {
        margin-bottom: 0px !important;
    }

    Thanks


    ThemeNectar Support Team 

  • teachy replied

    Absolutely amazing, thank you very much!