Tables or Frames question

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Tables or Frames question

    I need some help figuring our how to handle my web page problem. This is my
    first time building a web site with Dreamweaver. The website I am creating is
    [url]http://www.littlebuddybath.com[/url] . I have the website pages set up using tables.
    I have basic HTML text in the middle table cell so that I can easily edit the
    content when needed. My problem is, on the "Clean Buddy Services", I want
    that middle table cell to have the possiblity to scroll. The content I need to
    place in that table cell is longer than the space available. I want just that
    table cell to be able to scroll down with the content without interferring with
    the rest of the table. I've seen this done on other websites, I just have no
    clue how to make it work. I looked into frames. But, I just can't get that
    cell to be it's own frame. Please help me with my problem. I'd appreciate
    any feed back, thanks.

    Scootums Guest

  2. Similar Questions and Discussions

    1. Tables in To Frames
      Hi Guys, Is it possible to convert Tables in to Frames...allowing you to change an image within the desired frame. I want to create links in the...
    2. Aligning Tables in 2 frames
      Hi, first of all I would like to thank everybody for making this a helpful and informative forum and saving hours of frustration! Anyway, I...
    3. PHP and FRAMES/NOFRAMES question
      hello all, i am using FRAMES on my PHP site, basically i am using just on frame with the entire site inside. this is mainly for cosmetics so that...
    4. NON-PHP question (I-frames)
      Do we have any I-frame experts for IE. I am trying to use multiple I-frames in Internet Explorer. When two of them are applied they both lose...
    5. newB question: related tables question
      hello i have a data base with 10 tables, i want to automaticaly creat a row in all of the tables wehen i create in the first one. normal table...
  3. #2

    Default Re: Tables or Frames question

    i have done this before using layers. just create a layer and change the
    overflow attribute to scroll, make sure you position it correctly and add the
    absolute position attribute as well.

    here is a little snippet for you try out



    <body>
    <div id="ScrollLayer"
    style="position:absolute;
    top:30px;
    left:20px;
    height:300px;
    width:562px;
    overflow:scroll"
    onScroll="scrollit()">

    ' all of your text, images, tables, etc goes here

    </div>
    </body>

    acidrain9 Guest

  4. #3

    Default Re: Tables or Frames question

    :D Thanks for the input, I'll give it a try.
    Scootums 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