CSS Table and Scroll Problems

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

  1. #1

    Default CSS Table and Scroll Problems

    Hello

    First thanks for your help.

    What I would like to do is as follow

    1. I would like to create a 5 px all around padding inside certain cells only.
    Also, in those same cells I would like to have a thin white border.

    I would like to create a scroll bar in the middle of the page with news
    stories from my content manager something similar to
    [url]http://ugo.com/channels/music/[/url]

    I believe that they use overide CSS that forces a scroll.

    Thanks

    Steve

    T

    poserman Guest

  2. Similar Questions and Discussions

    1. Horizontal Scroll appears after 2nd Table inserted
      Hello there, I'm new to Dreamweaver, yet alone programming HTML, so please bare with me... I'm designing a website for a 1024 x 768...
    2. Scroll inside a table
      Okay this might be a simple question but I'm just simple web designer or what not. So I have a site layout made with a table. Say I have a cell...
    3. Scroll of the table seperatly without the head
      Hello, A part of the page is a tabel. When I scorl the page you wil mis all the heads of the table. I hope it is possible to scroll only the...
    4. Scroll Row in Table into View?
      Check out this articles, this might help you. http://aspalliance.com/aldotnet/examples/dgautoscroll.aspx...
    5. IFrames - Horiz Scroll problems
      Hi everyone, I created an IFrame based galley that allows the visitor to click on a thumbnail to get a larger image view....
  3. #2

    Default Re: CSS Table and Scroll Problems

    > 1. I would like to create a 5 px all around padding inside certain cells
    > only.
    > Also, in those same cells I would like to have a thin white border.
    This CSS style rule -

    td.special { padding:5px; border:1px solid white; }

    will do that for any cell like this -

    <td class="special">text here</td>
    > I would like to create a scroll bar in the middle of the page with news
    > stories from my content manager something similar to
    > [url]http://ugo.com/channels/music/[/url]
    I hate these. But use a div with overflow set to "auto" and a fixed height,
    e.g.,

    <div style="overflow:auto; height: 250px;">the text that will scroll</div>


    --
    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
    ==================


    "poserman" <webforumsuser@macromedia.com> wrote in message
    news:dmdn2o$sgo$1@forums.macromedia.com...
    > Hello
    >
    > First thanks for your help.
    >
    > What I would like to do is as follow
    >
    > 1. I would like to create a 5 px all around padding inside certain cells
    > only.
    > Also, in those same cells I would like to have a thin white border.
    >
    > I would like to create a scroll bar in the middle of the page with news
    > stories from my content manager something similar to
    > [url]http://ugo.com/channels/music/[/url]
    >
    > I believe that they use overide CSS that forces a scroll.
    >
    > Thanks
    >
    > Steve
    >
    > T
    >

    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