Results 1 to 2 of 2

Thread: frames - want to add side colums to four rows

  1. #1
    Join Date
    Mar 2007
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default frames - want to add side colums to four rows

    I have a frames site with four rows. I want to add a small column to each side so my site is more in the center rather than touching the edges of the browser. How do I do this? This is what I have now.


    <frameset rows="120,*,100,40" frameborder="no" border="0" framespacing="0">

    <frame src="frames/top.html" name="topFrame" noresize="noresize" scrolling="no">
    <frame src="frames/image.html" name="image" noresize="noresize" scrolling="no">
    <frame src="frames/thumbs.html" name="thumbs">
    <frame src="frames/bottom.html" name="bottomFrame" noresize="noresize" scrolling="no">

    </FRAMESET>

  2. #2
    Join Date
    Jul 2006
    Location
    Antwerp, Belgium (Europe)
    Posts
    927
    Thanks
    121
    Thanked 2 Times in 2 Posts

    Default

    just add a col on both sides, and fill it with the background you choose.
    Guess it should look something like this:

    Code:
    <FRAMESET COLS=",10,*,10" BORDER=1 FRAMEBORDER=1>
    <FRAME SRC="nothing.html" NAME="navigation" SCROLLING=NO>
    <frameset rows="120,*,100,40" frameborder="no" border="0" framespacing="0">
    <frame src="frames/top.html" name="topFrame" noresize="noresize" scrolling="no">
    <frame src="frames/image.html" name="image" noresize="noresize" scrolling="no">
    <frame src="frames/thumbs.html" name="thumbs">
    <frame src="frames/bottom.html" name="bottomFrame" noresize="noresize" scrolling="no">
    </FRAMESET>
    <FRAME SRC="nothing.html" NAME="content" SCROLLING=YES>
    </FRAMESET>

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •