Followup to
My mood/music/links won't stretch out and fill one line! If your mood/music and/or icons on your friends page/in your community links go all the way across an entry and cover up part of the entry, it's because you've edited part of the Content Resize Realign override incorrectly.
Find this or something like it:
table table table {
width: 100%;
}
If you have a width defined, whether in pixels (px) or percentages, this is probably the source of the problem. If you don't have a table table table section with a width at all, then you need to add one!
You should have this instead:
table table table {
width: auto;
}