Top/Bottom scrolling of table

Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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....
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default Re: Top/Bottom scrolling of table

    Not quite sure what you're trying to do
    lihaze Guest

  4. #3

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139