Ask a Question related to Macromedia Dreamweaver, Design and Development.
-
Seddon webforumsuser@macromedia.com #1
Create liquid window between 2 tables?
The page contains 2 tables. One at the top and one at the bottom. The tables are measured in pixels. Top one is 20 high and the bottom one is 59 high. I want to create an area between these 2 tables that would contain text etc and would need to scroll down if overflow occurs. This area would resize when the browser window is resized.
How would I do this?
Seddon webforumsuser@macromedia.com Guest
-
create tables in pdf using perl
Hello All, Is there any perl module that will let me create tables inside pdf document? I need to create reports in table format in a pdf... -
create window / kill window
I am working on a window that fly's in as a result of a button release. I have the window animated to fly in and fly out, I am wanting it to fly in... -
Anybody Know anything about Liquid Web
answer is quoted below. ................ All you need to do is to utilize two properties of the Stage object, scaleMode and align as well as... -
Create and Drop tables in a linked server
Hi, I have a linked server admin-new, is there a way to create and tables in the linked servers? I tried: drop table .master.dbo.tempIDs ... -
How to create tables referenced each other
I had 'SQL the complete reference' authored by James R. Groff. I can not believe it I can not find email or home page for this book or authors. Now... -
Dan Vendel *GOF* #2
Re: Create liquid window between 2 tables?
"Seddon" [email]webforumsuser@macromedia.com[/email] wrote:
tables are measured in pixels. Top one is 20 high and the bottom one is> The page contains 2 tables. One at the top and one at the bottom. The
59 high. I want to create an area between these 2 tables that would
contain text etc and would need to scroll down if overflow occurs. This
area would resize when the browser window is resized.You're not saying if you want the widths of the top and bottom tables>
expand when window is resized. Assuming you want them fixed width (e.g.
700px) while the "main content" expands, you can use this table:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top">
<table width="700" border="0" cellspacing="0" cellpadding="0"
align="center" height="20">
<tr>
<td> </td>
</tr>
</table>
</td>
</tr>
<tr>
<td valign="top"> </td>
</tr>
<tr>
<td valign="top">
<table width="700" border="0" cellspacing="0" cellpadding="0"
align="center" height="59">
<tr>
<td> </td>
</tr>
</table>
</td>
</tr>
</table>
Please note that the height of top and bottom tables will not work if
you don't put some content in them, e.g. a shim or an image that's
exactly 20 resp. 59 px high.
If you want the top and bottom tables to expand with the browser width,
too, yopu can actually remove them and place the content straight in the
upper and lower cells.
HTH
--
Dan Vendel - *GOF*
[url]http://www.vendel.info[/url]
Contact me directly by clicking here:
[url]http://contact.vendel.info[/url]
Formmail tutorial:
[url]http://www.vendel.info/tut/formmail.html[/url]
Nested table demonstration:
[url]http://www.vendel.info/tabletut/[/url]
Dan Vendel *GOF* Guest



Reply With Quote

