This rule (red):
Code:
.entry p, .entrytext p{
padding-top: 5px;
width: 575px;
line-height:125%;
font-family: Verdana, Lucida, Arial, Helvetica, sans-serif;
font-size: 11px;
margin: 2px 0 15px 0
}
Since a <p> element that is selected by the above rules (the pink 'alert') lies within the content division, it pushes its overflow to that width even though its actual width dimension is 60%. In a smaller window, this causes it's content to exceed 60% of the page.
Get rid of that red property/value pair and see what happens.
Bookmarks