how to resize frames

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

    how to resize frames

    Hello

    How can I define the size of this whole window, i.e. to 600 * 800 pixels ?
    Is there a script I can includre here?

    <FRAMESET FRAMEBORDER=0 BORDER=0 FRAMESPACING=0 ROWS="130,*">
    <FRAME SRC="head.html" NAME="head" SCROLLING=NO>
    <FRAMESET FRAMEBORDER=0 BORDER=0 FRAMESPACING=0 COLS="205,*">
    <FRAME SRC="menu.html" NAME="menu" NORESIZE>
    <FRAME SRC="menu-exe.html" NAME="main">
    </FRAMESET>

    Thanks for your help

    Roberto
  • @SM

    #2
    Re: how to resize frames

    Roberto a ecrit :[color=blue]
    >
    > Hello
    >
    > How can I define the size of this whole window, i.e. to 600 * 800 pixels ?
    > Is there a script I can includre here?[/color]

    No.
    You have only to specify in pixels the
    - height of head (here you can put an image < 800px width and right height)
    - width of your menu
    and
    let in free-adjust the main frame (*)

    <FRAMESET ROWS="50,50*" FRAMEBORDER=0 border=0><!-- height 1st frame 50 pixels -->
    <FRAME SRC="head.html" NAME="head" NORESIZE SCROLLING=no>
    <FRAMESET COLS="201,62*" FRAMEBORDER=0 border=0>
    <FRAME SRC="menu.html" NAME="menu" NORESIZE><!-- width 201 pixels -->
    <FRAME SRC="menu-exe.html" NAME="main"><!-- width free -->
    </FRAMESET>
    </FRAMESET>

    all is ok what ever the size of screen is

    --
    ******** (enlever/remove [OTER_MOI] du/from reply url) *******
    Stéphane MORIAUX : mailto:stephane OTER_MOImoriaux @wanadoo.fr
    Aide aux Pages Perso (images & couleurs, formulaire, CHP, JS)

    *************** *************** *************** *************** **

    Comment

    Working...