Okay
  Public Ticket #1206796
Masonry Blog Element Text Bug
Closed

Comments

  • bobbycornes949 started the conversation

    I have used the page builder "Blog Element" and have the masonry layout with no sidebar setting. All the posts going to this blog element will be created as a "link". As you see from the screenshot there seems to be a bug with the wrapping of the post title when using this layout and "link" type of post. I am looking to address this text wrapping issue, and also is there a way to remove the actual link text from displaying on the masonry thumbnail? Could this be replaced by a button reading "Learn more"?

  •  8,470
    Tahir replied

    Hey Again,

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

    /* fix link text cropping */
    article.post.link .post-content .destination {
        word-break: break-all;
    }
    /* remove link */
    article.post.link .post-content .destination {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team