Only Vertical Scrolling at Table

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

  1. #1

    Default 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 make it scroll only
    vertically, and not horizontally also

    does someone know how to make it work?

    thanks a lot for any help,

    Iara

    lou bra Guest

  2. Similar Questions and Discussions

    1. Vertical alignment in table cells
      If I create a table and then merge several cells vertically, I can enter some text and can set the vertical alignment of the new 'spanned' cell to...
    2. Problem with table formatting : auto-vertical expanding
      I have a problem that is driving me crazy. In trying to convert our site from Frontpage to Dreamweaver, I selected to use templates. I setup a...
    3. Repeating region inside a vertical scrolling window
      Hello All, I have a webpage that has a user form and beside that form is a repeating region. Is it possible to have a repeating region inside a...
    4. vertical scrolling pointer following cursor
      Hi! Does anyone know how to do a vertical scrolling pointer following the cursor up and down? I've tried a couple tricks using vector motion and...
    5. Vertical scrolling layer
      I need some help in creating a vertical scrolling layer. I've successfully used PVII's free extension for DW4, but I need to tweak it a bit and don't...
  3. #2

    Default 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 make it scroll only
    vertically, and not horizontally also

    does someone know how to make it work?

    <head>
    <style type="text/css">
    #slider{
    width:250px;
    height:400px;
    overflow:auto;
    }
    </style>
    </head>


    and then..

    <body>
    <div id="slider"> my content </div>


    thanks a lot for any help,

    Iara

    lou bra Guest

  4. #3

    Default Re: Only Vertical Scrolling at Table

    There is no table in that code.

    With overflow set to auto, if you put something that is wider than 250px
    into the slider div, you will get a horizontal scrollbar.

    --
    Murray --- ICQ 71997575
    Adobe Community Expert
    (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
    ==================


    "lou bra" <webforumsuser@macromedia.com> wrote in message
    news:eifaqm$irr$1@forums.macromedia.com...
    > 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 make it scroll
    > only
    > vertically, and not horizontally also
    >
    > does someone know how to make it work?
    >
    > <head>
    > <style type="text/css">
    > #slider{
    > width:250px;
    > height:400px;
    > overflow:auto;
    > }
    > </style>
    > </head>
    >
    >
    > and then..
    >
    > <body>
    > <div id="slider"> my content </div>
    >
    >
    > thanks a lot for any help,
    >
    > Iara
    >

    Murray *ACE* Guest

  5. #4

    Default Re: Only Vertical Scrolling at Table

    thank you, it's working fine now. my table was with a little bit px more than the slider..
    lou bra 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