If you frequently post JavaScript or other code on Blogger, it's possible that long lines of code could push the sidebar to the bottom of your Blogger page (this issue generally only occurs in IE; Firefox will extend the code into the sidebar without pushing it to the bottom).
A few days ago, 8O experienced a similar blunder. If you happened to visit the "Solve Blogger In-Page Comments in 3 Minutes" post a few days ago, you might have noticed the sidebar being pushed to the bottom. At the time, interjc criticized this by saying, "The most serious flaw of this approach is that it breaks the template..." This was actually due to a long segment of code in that post affecting the entire display of Blogger in IE. However, this situation won't happen again. Simply add the following code to your CSS:
```css
pre {
white-space: pre-wrap; /* css-3 */
white-space: -moz-pre-wrap !important; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
```
Thanks to God and Tyler for "Wrapping Text Inside Pre Tags."
Oh, interjc, now my in-page comments method is complete!