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

  1. #1

    Default Stuck on CSS Layout

    Hi,

    I'm stuck on this CSS layout I'm trying to make. It's basically the
    sekeleton for a search screen in a big webapp I'm doing. The idea is
    that the Titlebar-DIV and the Scope-DIV stay on top with a fixed height
    and that the buttons-DIV stays at the bottom of the browserwindow and
    also has fixed height.

    The Tabbox-DIV has to fit inbetween the Scope-DIV and Buttons-DIV. This
    implies that it's size (both height and with) resizes with the
    browserwindow.

    You can see the page at [url]http://www.haemhouts.be/a.html[/url]

    Does anybody have any idea how to do this? I've even tried to give the
    Tabbox-DIV a negative bottom-margin, but that only works in IE 6...and
    not even completely because it still overlaps with the buttons-DIV.

    Nicodemus.
    Nicodemus Guest

  2. Similar Questions and Discussions

    1. CFC Query - stuck, stuck, stuck
      I am once again trying to use Dreamweaver. Here I want to create my first CFC. I'm following the online tutorial Building Your First Database...
    2. [PHP] Am stuck
      On Thu, 25 Sep 2003 15:09:31 +0200 "Chris Grigor" <aphrodit@iafrica.com> wrote: I don't think you need to determine the length of $name. You...
    3. [PHP] Fw: Am stuck
      On Thu, 25 Sep 2003 15:17:26 +0200 "Chris Grigor" <aphrodit@iafrica.com> wrote: Look up str_pad(). ____ Regards, Andu Novac
    4. stuck with SQL
      If you need to use subqueries, you need to upgrage to MySQL 4.1.x. In 4.0.14 you can restructure your query using a LEFT JOIN on the tables. ...
    5. php.. Am I stuck??
      I purchased a program ( So I thought) that turned out to be just a bunch of php scripts put together. I am getting terrible support from the author...
  3. #2

    Default Re: Stuck on CSS Layout

    Nicodemus wrote:
    > Hi,
    >
    > I'm stuck on this CSS layout I'm trying to make. It's basically the
    > sekeleton for a search screen in a big webapp I'm doing. The idea is
    > that the Titlebar-DIV and the Scope-DIV stay on top with a fixed
    > height and that the buttons-DIV stays at the bottom of the
    > browserwindow and also has fixed height.
    >
    > The Tabbox-DIV has to fit inbetween the Scope-DIV and Buttons-DIV.
    > This implies that it's size (both height and with) resizes with the
    > browserwindow.
    >
    > You can see the page at [url]http://www.haemhouts.be/a.html[/url]
    >
    > Does anybody have any idea how to do this? I've even tried to give the
    > Tabbox-DIV a negative bottom-margin, but that only works in IE 6...and
    > not even completely because it still overlaps with the buttons-DIV.
    That's an exercise in futility. Any user in a modern browser can simply
    resize text and your layout will be broken. You cannot assign a height
    to an element unless the contents of that element are fixed-height as
    well.

    --
    Al Sparber - PVII
    [url]http://www.projectseven.com[/url]
    DW Extensions - Menu Systems - Tutorials - Templates
    ---------------------------------------------------------
    Webdev Newsgroup: [url]news://forums.projectseven.com/pviiwebdev/[/url]
    CSS Newsgroup: [url]news://forums.projectseven.com/css/[/url]
    RSS Feeds: [url]http://www.projectseven.com/xml/[/url]




    Al Sparber- PVII Guest

  4. #3

    Default Re: Stuck on CSS Layout

    > That's an exercise in futility. Any user in a modern browser can simply
    > resize text and your layout will be broken. You cannot assign a height
    > to an element unless the contents of that element are fixed-height as
    > well.
    >
    The idea is that the Tabbox-DIV gets an overflow:auto, meaning that if
    they resize the text or the window is too small, that the tabbox-DIV wil
    simple scroll the content.
    Nicodemus Guest

  5. #4

    Default Re: Stuck on CSS Layout

    Nicodemus wrote:
    >> That's an exercise in futility. Any user in a modern browser can
    >> simply resize text and your layout will be broken. You cannot assign
    >> a height to an element unless the contents of that element are
    >> fixed-height as well.
    >>
    >
    > The idea is that the Tabbox-DIV gets an overflow:auto, meaning that if
    > they resize the text or the window is too small, that the tabbox-DIV
    > wil simple scroll the content.
    ah - I see. Then It's probably doable. I'll take another look at the
    page and see if there's an easy answer (or any answer :-)

    --
    Al Sparber - PVII
    [url]http://www.projectseven.com[/url]
    DW Extensions - Menu Systems - Tutorials - Templates
    ---------------------------------------------------------
    Webdev Newsgroup: [url]news://forums.projectseven.com/pviiwebdev/[/url]
    CSS Newsgroup: [url]news://forums.projectseven.com/css/[/url]
    RSS Feeds: [url]http://www.projectseven.com/xml/[/url]




    Al Sparber- PVII Guest

  6. #5

    Default Re: Stuck on CSS Layout

    Thnx, I've been trying to solve this one for some time now, but can't
    seem to find an answer. What I've done so far is give the tabbox-DIV a
    percentage height of something like 65 or 75. That way it's usable in
    the target resolutions of 1024 X 768 and 800 X 600. The only problem
    with that is that users get a lot of empty space, especially the ones
    with a larger screen...now the poor bastards are complaining :-) Can't
    blame them, because one of the tabpages holds a list of results, and
    they maximize their screen to see more results, but instead they see all
    this empty space. Result, frustrated users. So, any insight from you
    would be grately appreciated ;-)

    Nico

    Al Sparber- PVII wrote:
    > Nicodemus wrote:
    >
    >>>That's an exercise in futility. Any user in a modern browser can
    >>>simply resize text and your layout will be broken. You cannot assign
    >>>a height to an element unless the contents of that element are
    >>>fixed-height as well.
    >>>
    >>
    >>The idea is that the Tabbox-DIV gets an overflow:auto, meaning that if
    >>they resize the text or the window is too small, that the tabbox-DIV
    >>wil simple scroll the content.
    >
    >
    > ah - I see. Then It's probably doable. I'll take another look at the
    > page and see if there's an easy answer (or any answer :-)
    >
    Nicodemus Guest

  7. #6

    Default Re: Stuck on CSS Layout

    Nicodemus wrote:
    > Thnx, I've been trying to solve this one for some time now, but can't
    > seem to find an answer. What I've done so far is give the tabbox-DIV a
    > percentage height of something like 65 or 75. That way it's usable in
    > the target resolutions of 1024 X 768 and 800 X 600. The only problem
    > with that is that users get a lot of empty space, especially the ones
    > with a larger screen...now the poor bastards are complaining :-) Can't
    > blame them, because one of the tabpages holds a list of results, and
    > they maximize their screen to see more results, but instead they see
    > all this empty space. Result, frustrated users. So, any insight from
    > you would be grately appreciated ;-)
    Post the URL to your page on our CSS newsgroup again if you can - under
    a new thread and I'll look at it this afternoon.

    --
    Al

    Al Sparber- PVII Guest

  8. #7

    Default Re: Stuck on CSS Layout

    Not so, Rob. That only works for IE on the PC and any user who needs to
    resize text in MSIE-PC will know how to do it - pixels or not.

    rob :: digitalburn wrote:
    > Not if you define the font-size is CSS to a px value.
    >
    >> That's an exercise in futility. Any user in a modern browser can
    >> simply resize text and your layout will be broken.
    --
    Al Sparber - PVII
    [url]http://www.projectseven.com[/url]
    DW Extensions - Menu Systems - Tutorials - Templates
    ---------------------------------------------------------
    Webdev Newsgroup: [url]news://forums.projectseven.com/pviiwebdev/[/url]
    CSS Newsgroup: [url]news://forums.projectseven.com/css/[/url]
    RSS Feeds: [url]http://www.projectseven.com/xml/[/url]




    Al Sparber- PVII Guest

  9. #8

    Default Re: Stuck on CSS Layout

    Not if you define the font-size is CSS to a px value.
    > That's an exercise in futility. Any user in a modern browser can
    > simply resize text and your layout will be broken.

    rob :: digitalburn 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