I'm so far behind on the 21 questions meme, I don't know if I'll ever catch up.
However, I do have something to offer people who are interested in Dreamwidth.
ETA, since several people pointed out it was useful.
The bit of CSS above, when added to your custom CSS will keep syndicated feed entries to about 60 lines. If the entry goes longer than that, browsers should provide an internal scrollbar for the entry.
The one exception I have found so far is Dolphin HD browser, a very good Android browser, which simply cuts the text off once it reaches its max-height. Because the lines are shorter, entries reach the max-height very quickly on my phone, especially if they have pictures.
However, I do have something to offer people who are interested in Dreamwidth.
/* max-height for syndicated journals on reading page */
.page-read .journal-type-Y .entry-content {
max-height: 75em;
overflow: auto;
}
ETA, since several people pointed out it was useful.
/* max-height for syndicated journals on network page */
.page-network .journal-type-Y .entry-content {
max-height: 75em;
overflow: auto;
}
The bit of CSS above, when added to your custom CSS will keep syndicated feed entries to about 60 lines. If the entry goes longer than that, browsers should provide an internal scrollbar for the entry.
The one exception I have found so far is Dolphin HD browser, a very good Android browser, which simply cuts the text off once it reaches its max-height. Because the lines are shorter, entries reach the max-height very quickly on my phone, especially if they have pictures.