rubi
Science Advisor
- 847
- 348
Fredrik said:Why? Longer lines of text are harder to read.
If you prefer a fixed line width, then add this to the script (and change 747px to whatever you want):
Code:
posts = document.getElementsByTagName ("div");
for (i = 0; i < posts.length; i++) {
if (posts[i].id.substr (0,12) == "post_message") posts[i].style.width = "747px";
}
Attachments
Last edited: