Layout Height

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Wilhelm Kutting

    Layout Height

    I want to use the following layout:

    HEADER
    -------------------------
    LEFT | RIGHT
    |
    Blue | Grey
    |
    |


    I need the Header width of 30px and the Rest of two columns the rest of
    the page.


    Is that possible and how?
  • Tony

    #2
    Re: Layout Height

    Wilhelm Kutting <wkutting@arcor .de> wrote in message news:<clfpm9$a3 u$1@online.de>. ..[color=blue]
    > I want to use the following layout:
    >
    > HEADER
    > -------------------------
    > LEFT | RIGHT
    > |
    > Blue | Grey
    > |
    > |
    >
    >
    > I need the Header width of 30px and the Rest of two columns the rest of
    > the page.
    >
    >
    > Is that possible and how?[/color]

    under the assumption that the height of LEFT is always smaller than
    the one of RIGHT, I would put left & right into another div (
    ..CONTAINER ) with background color set to grey :
    ..HEADER { height: 30px; ... }
    ..CONTAINER { background-color: Grey; ... } /* or Blue if LEFT is
    higher */

    regards,
    Tony

    Comment

    • Brian

      #3
      Re: Layout Height

      Wilhelm Kutting wrote:[color=blue]
      > I want to use the following layout:[/color]
      [snip]

      This is your third message in ciwas within the past week where you post
      an ascii "picture" of the layout you want. I appreciate that CSS is
      hard, but getting requests for code to be spoonfed to you is not my idea
      of fun.

      BTW, this time, the ascii art is a bit screwy. Did you use a variable
      width font when you made it?
      [color=blue]
      > I need the Header width of 30px[/color]

      Is the header only an image?
      [color=blue]
      > and the Rest of two columns the rest of the page.
      >
      >
      > Is that possible and how?[/color]

      With CSS positioning. Instead of posing such questions, how about
      actually learning some CSS -- start with floats (after learning basics
      like colors and fonts, I suppose) -- so that you can do these layouts
      yourself. And if you have problems executing something, like overlapping
      text, ask here about that specific problem.

      Good luck.

      --
      Brian (remove "invalid" to email me)

      Comment

      • Brian

        #4
        Re: Layout Height

        Brian wrote:[color=blue]
        > Wilhelm Kutting wrote:
        >[color=green]
        >> I want to use the following layout:[/color]
        >
        > [snip][/color]

        I put this reply in the wrong thread. Apologies.

        --
        Brian (remove "invalid" to email me)

        Comment

        Working...