Looking through the source for just this page (not any css files loaded from outside - though I think if I remember correctly css in the page source overrides any other source) - it looks like there could be 1 place with problematic fixed width?
#UserNameOptions div a {
position: relative;
display: block;
margin: 0;
padding: 5px;
width: 500px;
white-space: nowrap;
text-align: left;
text-decoration: none;
font: 11px arial;
}
This one's a bit strange - it seems to specify the width of the little bar above the posts. Interestingly enough, the width is overridden the first time above (to just be 100% the page width, what it seems like it should be for portability), but then inside that element is the ul element which has the 500px width? Perhaps that is forcing the outer element to the greater width? This still doesn't make a ton of sense, because it's the whole site that seems to have the fixed width problem, not just the pages with posts. Additionally, I have much more than 500px allocated to NWChem right now and it still cuts off - if I expand the window it seems that it demands ~1000px at all times.
It must be some other css file that's being included that makes this specification. Sorry I couldn't be of more help, let me know if there's anything I can do.
|