Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
Cimy13 #1
Top/Bottom scrolling of table
Hello,
I am trying to have the content inside of my table scroll top to bottom. Does
any one know how to solve this issue.
Here is the code for the table:
<table width="640" border="0" cellpadding="0" cellspacing="0">
<tr valign="top">
<td width="8"><img src="ls.jpg" width="8" height="232" alt="left"></td>
<td width="624" class="cbt">
<p onfocus="MM_openBrWindow('','','scrollbars=yes')"> Links are provided as a
courtesy to our visitors, we are not
responsible for the content of off-site links. </p>
<p><strong>PRIVATE HEARTS LA WEEKLY REVIEW</strong><br>
<a href="http://www.laweekly.com/theater/theater_results.php?showid=533"
target="_blank">Private Hearts</a></p>
<p><strong>CHARLES EMMETT FILMOGRAPHY</strong><br>
<a href="http://funwavs.com/movie/biography/charles-emmett/"
target="_blank">Biography</a>
<br>
<a href="http://funwavs.com/movie/cast/liar-liar" target="_blank">Liar
Liar</a></p>
<p align="right"><a href="links-2_new.html"></a></p></td>
<td width="10"><img src="rs.jpg" width="8" height="232" alt="rs"></td>
</tr>
</table>
I appreciate any suggestions.
Thanks,
Mike
Cimy13 Guest
-
Only Vertical Scrolling at Table
Hello, I need some help concerning to the code below. I have a small table confugured to scroll text, but something is lacking in the code to... -
How to make a html table stretch to the bottom
Hello everyone. I need alittle help. I would like to make a html table to the bottom. I try setting it to 100%, and try some CSS, but nothing works.... -
Scrolling a NSScrollView to the bottom
In <hraftery-2FB90A.21082003082003@seagoon.newcastle.edu.au> Heath Raftery wrote: reflectScrolledClipView. But, you shouldn't be bossing the... -
Table Scrolling
Hi, just a question about tables - is it possible to make them scrollable??? For example having some content in the middle of a table that can be... -
Table scrolling problem (iframe) in Mac IE 5.2
Hi everyone, I run a website for the band http://www.levelcd.com. I was wondering if anyone has a code to solve this problem. I use the "frame... -
-
Murray *TMM* #3
Re: Top/Bottom scrolling of table
A table cannot have scroll bars.
<p onfocus="MM_openBrWindow('','','scrollbars=yes')"> Links are provided as a
This seems a bit hinky too - applying event handlers to <p> tags is likely
to find some browsers that don't understand.
You could put your contents into a scrolling div in that table cell,
however -
<td><div style="overflow:auto;height:250px;">your content here</div></td>
--
Murray --- ICQ 71997575
Team Macromedia Volunteer for Dreamweaver
(If you *MUST* email me, don't LAUGH when you do so!)
==================
[url]http://www.dreamweavermx-templates.com[/url] - Template Triage!
[url]http://www.projectseven.com/go[/url] - DW FAQs, Tutorials & Resources
[url]http://www.dwfaq.com[/url] - DW FAQs, Tutorials & Resources
[url]http://www.macromedia.com/support/search/[/url] - Macromedia (MM) Technotes
==================
"Cimy13" <webforumsuser@macromedia.com> wrote in message
news:dtg35q$5v2$1@forums.macromedia.com...> Hello,
> I am trying to have the content inside of my table scroll top to bottom.
> Does
> any one know how to solve this issue.
> Here is the code for the table:
>
> <table width="640" border="0" cellpadding="0" cellspacing="0">
> <tr valign="top">
> <td width="8"><img src="ls.jpg" width="8" height="232" alt="left"></td>
> <td width="624" class="cbt">
> <p onfocus="MM_openBrWindow('','','scrollbars=yes')"> Links are provided as
> a
> courtesy to our visitors, we are not
> responsible for the content of off-site links. </p>
> <p><strong>PRIVATE HEARTS LA WEEKLY REVIEW</strong><br>
> <a href="http://www.laweekly.com/theater/theater_results.php?showid=533"
> target="_blank">Private Hearts</a></p>
> <p><strong>CHARLES EMMETT FILMOGRAPHY</strong><br>
> <a href="http://funwavs.com/movie/biography/charles-emmett/"
> target="_blank">Biography</a>
> <br>
> <a href="http://funwavs.com/movie/cast/liar-liar" target="_blank">Liar
> Liar</a></p>
> <p align="right"><a href="links-2_new.html"></a></p></td>
> <td width="10"><img src="rs.jpg" width="8" height="232" alt="rs"></td>
> </tr>
> </table>
>
> I appreciate any suggestions.
> Thanks,
> Mike
>
>
>
Murray *TMM* Guest



Reply With Quote

