Another Frame Situation

Discussion in 'HTML - XHTML - CSS' started by kenjin, Dec 18, 2005.

  1. kenjin New Member

    Alright. I can't get this frame to work. This time its on the left.

    Coded Im Using:
    Code:
    <frameset cols="100,*" frameborder="NO" border="0" framespacing="0">
      <frame src="[URL="http://www.keven-knp.com/forum/forum1.html"]http://www.keven-knp.com/forum/forum1.html[/URL]" name="leftFrame" scrolling="NO" noresize>
      <frame src="[URL="http://iphusion.invisionplus.net/"]http://iphusion.invisionplus.net[/URL]" name="mainFrame">
    <noframes>
        <P>Click here for the <A href="<A href="http://iphusion.invisionplus.net">non-frame/">http://iphusion.invisionplus.net">non-frame based version of this site.</A> </p>
        </noframes>
    </frameset>
    
    The Site:
    http://www.keven-knp.com/forum/forum2.html

    I need help making the left frame have no scroll bar and show the image found here: http://www.keven-knp.com/forum/forum1.html
  2. Blinky New Member

  3. Connor Moderator / Programmer

    Kenjin

    Here's the correct code:

    Code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN">
    <HTML><HEAD>
    </HEAD><FRAMESET border=0 
    frameSpacing=0 frameBorder=0 cols=25%,75%><FRAME name=left marginWidth=10 
    marginHeight=10 src="http://www.keven-knp.com/forum/forum1.html" frameBorder=no 
    noResize><FRAME name=right marginWidth=10 marginHeight=10 
    src="http://iphusion.invisionplus.net/" frameBorder=no 
    noResize><NOFRAMES>
      <body>
      <p><A href="http://iphusion.invisionplus.net">Click here for the non-frame based version of this site.</A></p>
      </body>
      </NOFRAMES></FRAMESET></HTML>
    
    Note: Both pages MUST centered for it to work better.

    You'll also need to delete the footer at the bottom of the left frame.

    Also, you might want to think about downloading your own forum like a phpBB forum or something becouse the ad on the forum page is what is having to make it use a scroll bar... if that's not on there only the vertical scroll bar would be needed. ( http://phpbb.com )

    If you have more questions then ask me on MSN or AIM or go to http://www.w3schools.com like Blinky said.

    Connor