Adding a scroll bar to a cell

S

Sonars_UK

Hi,

If you have a look at the website below you will see that there is a
news/club latest section to the right hand side of the home page. The
content is soon going to outgrow the cell dimensions and I don't want to
ruin the proportions of the page with a really long news section.

Is there a way (using FP2002) that I can add scroll bar to this cell only so
people can scroll down and see the older news entries?

Thanks v.much for any advice,

Regards,

Sonars UK

PS: The site can be found at www.leicesterivanhoecc.co.uk
 
J

Jon Spivey

Hi,
you can stick a div inside the cell like this

<style type="text/css">
#scrollDiv{
height:200px;
overflow:auto;
}
</style>

<td>
<div id="scrollDiv"> a bunch of text......</div>
</td>

and scrollbars will appear as needed. The only browser that won't like this
is NN4 - the text will display but itll spill out of the div. Every modern
browser will get it right
 
T

Thomas A. Rowe

You can insert a IFrame.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
S

Sonars_UK

Hi,

I've created an IFrame but it's proportions are all wrong for the cell I am
using.

The problem can be viewed at: www.leicesterivanhoecc.co.uk. Could you have
another look and let me know what you think?

Regards,

Sonars UK
 
S

Sonars_UK

It's sorted now. I didn't realise that I could just drag the frame to the
required size.

Thanks for the original advice.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top