How to limit the character length of synopsis?
It takes too much place on unicode view.
I know that it can be set independently in "Synopsis by IanM".
But I ran into some UI issues with lanM's extension.
Can I edit some documents or add CSS to get there?
Thanks for any advice and teaching.

  • IanM replied to this.

    Subarist synopsis allows you to set the max character lenth of the output, either globally or on a per tag basis.

    Subarist But I ran into some UI issues with lanM's extension.

    What are the issues you are having? Can you elaborate please?

      IanM
      Yes
      Sorry for my bad English, and thank you for taking the initiative to care about my question.

      I don't have time to test further, not sure if it's my internal problem.
      When I turn on the Mobile option, the summary is displayed twice on the desktop.
      I should be able to modify the CSS to make the original synopsis disappear on desktop, but I haven't tried it yet.


      4 days later

      IanM
      update..
      I think it's just not compatible with Asirem theme.
      When using the standard theme, everything behaves fine.
      Is there any chance to achieve what I want without using extensions?

      23 days later

      I temporarily use CSS to solve this problem by limiting the number of lines.

       .DiscussionListItem-info .item-excerpt {
          overflow: hidden;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 2;   
          }

      It would look more perfect if we could limit the layout by setting the number of characters.
      Keep waiting for guidance.
      Thanks for any help.