Can you use Scroll bars in Table Layout Cells?

G

Guest

I am relatively new to FP and WEB building.

I have built a simple web site using Table Layout, one of the cells is the
Main information cell and has a lot of data to be displayed on a number of
the pages. I would prefer to keep the main format ie The header left column
and the footer on the screen at all times, but this is not possible unless I
can have scroll bars in the main data cell.

I think you can do it with Frames but my limited experience with Frames is
not good, so I would prefer to use Table Layout

Thanks for your help
 
T

Thomas A. Rowe

Use and IFrame or CSS Layers

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

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

Murray

Table cells do not have scrollbars, but other containers within table cells
do. For example -

<td><div style="overflow:auto; height:65px;">more than 65px worth of
stuff</div></td>

It's not a great solution, however, since you will encounter browser support
issues, as well as printing issues (only the visible portion will print).
 
A

Al Sparber

Murray said:
Table cells do not have scrollbars, but other containers within table
cells do. For example -

<td><div style="overflow:auto; height:65px;">more than 65px worth of
stuff</div></td>

It's not a great solution, however, since you will encounter browser
support issues, as well as printing issues (only the visible portion
will print).

Here's an example:
http://www.projectseven.com/csslab/testing/tables/tdscroll/

It prints. Note the media attribute on the style tag :)
 
M

Murray

Actually, you wouldn't want to use a CSS "layer" in a table cell unless it
were a relatively positioned one, and then it's not for sure it's really a
"layer"! 8)
 
M

Murray

Right, but it's a problem in that you usually mention me in your greeking
text, and in this case, you didn't.... 8)
 
G

Guest

Thank you to all that responded o this question.

I need to go away now and spend time working on some of the solutions , I
am not upto speed on CSS, IFRAMes and HTML code

Once again thanks

John
 

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