Timeline Read More

Hi,

Is there any way to remove the "Read More" and adjust the height limit on timeline posts?  I'm not seeing a setting for this anywhere.  Thanks!

James

  • 582
  • More
Replies (5)
    • Hello James Webb !

      You may turn on "Enable Infinite Scroll (experimental) " param in Studio->Timeline page. You may also check other "per page" parameters there too.

      • Thanks, LeonidS.  I wasn't very clear on my question unfortunately.  I actually meant the "Read More" on individual long timeline posts, not the whole page.  

        James

        • Also, I believe the default is actually "See more...".  Sorry for the confusion.

          James

          • Ahh, then you need to redeclare the parameters of this CSS class:

            div.bx-tl-item-text div.bx-tl-content {

                position: relative;

                max-height: 250px;

                text-overflow: ellipsis;

                overflow: hidden;

            }

            Go to Studio->[Your template name]->Styles->Custom Syles area and add there smth like:

            div.bx-tl-item-text div.bx-tl-content {

                max-height: 200px;

            }

            • Sorry, I missed your reply on this.  Thanks!

              Login or Join to comment.