max-height or max-width exist but are not supported by many browsers. I think only opera supports those (don't quote me on that though).
anyway, the way I see your post is this... You are asking 2 things.
1. you have an image that you dont want to scroll (image is in a table cell).
2. You want your text in your news section to scroll but not the page.
answers
1. if you have an image inside a table and you don't want scrollbars, put everything in the table cell inside a div.
Example:
<table><tr><td>
<div style="overflow:hidden;width:10px;height:10px">
<img src="yourpic.jpg"></div></td></tr></table>
Change the width and height to the size of the picture. The overflow:hidden removes scroll bars (just in that area and not the whole page).
2. To get a scroll bar just for your news section, you use DIV's again.
Example:
<div style="overflow:auto;height:400px;width:400px">
Your news and junk
</div>
This will make a box with width 400 and height 400 pixels. The scroll bar shows up only if the text is longer than 400 pixels.
Reply