frames

edited November 2004 in Internet & Media
does anyone know how to set up the frames like this http://reviews.teamxbox.com/xbox/833/Halo-2/p1/ site? I am trying to make something like that for my school project. Sence i am doing it for school i can not use i program i have to use coding.

thanks,
Jeremy
http://www.thegamerguyonline.tk

Comments

  • a2jfreaka2jfreak Houston, TX Member
    edited November 2004
    That site doesn't use frames.

    Search the document for "frameset" and you won't find it. There is "iframe" but that's different. The site uses "div" elements, not frames, to achieve its look.
  • Straight_ManStraight_Man Geeky, in my own way Naples, FL Icrontian
    edited November 2004
    Teambox is not using a complete frameset, they are using div and iframes. The iframes are only used for ads, the rest is divs.

    To mimic the page, you can use a page table layout if you want for most of what they do. This looks like a Macromedia or Macromedia plus FrontPage deved page. I would say start simpler, learn tables and how to use content in cells and rows and column structures in tables.

    Basicly, a frameset is a master table with calls to separate html pages for each frame's content. IF you use a pure table structure, and want some thigns totally common, you can give each page that code that is common from a template, then add the unique stuff. Framesets extend the table idea by letting each frame component or pane be independently fed, so that the real modern browser in most cases can simply refresh only the changed frame. Not all browsers can do this right. So, for my sites, I do not use framesets, instead I hand code common content templates and then add unique content.

    BUT, to understand framesets, you indeed have to know how tables work FIRST in order not to fubar more often than you get good results. So, start with tables and and templates, then work up to framesets.
  • edited November 2004
    can you make it so the frames invisable? I like the idea of frameset but i do not want to see the lines that are there.

    thanks,
    Jeremy
    http://www.thegamerguyonline.tk
  • a2jfreaka2jfreak Houston, TX Member
    edited November 2004
    [php]<frameset cols="120, *" border="0">[/php]
Sign In or Register to comment.