Development frames

Discussion in 'Software' started by pranks7er, 5 Feb 2003.

  1. pranks7er

    pranks7er mange tout

    Joined:
    25 Dec 2002
    Posts:
    3,515
    Likes Received:
    0
    i am developing a website using hotmetal pro 4.0

    there are two frames - a navigation frame
    and then the main website document is in a frame.

    the problem is that when i create a link ( create the link in the navigation frame page), and then name the target frame box - the name of the frame. all this goes ok but when i want 2 preview the site in IE 6 i get three frames 2 navigation frames and then the main web document, any one know whats going wrong.

    Also if anyone can provide further info on creating a link one one frame and then the result being seen on the other frame please post it here

    hthanks
     
  2. bradford010

    bradford010 Bradon Frohman

    Joined:
    7 Dec 2001
    Posts:
    3,426
    Likes Received:
    0
    Mind if we take a look at the code?

    btw, assuming you have 2 frames called 'nav' and 'main' you should be able to refresh the contents of 'main' from 'nav' with
    Code:
    <a href="file.html" target="main">Click me!</a>
    
     
  3. pranks7er

    pranks7er mange tout

    Joined:
    25 Dec 2002
    Posts:
    3,515
    Likes Received:
    0
    ill post the code later ill post the code for the 2 frames and then the whole page
     
  4. pranks7er

    pranks7er mange tout

    Joined:
    25 Dec 2002
    Posts:
    3,515
    Likes Received:
    0
    ive got it to work thanks any way, if i have more problems ill be requesting help



    :clap: :D
     
  5. pranks7er

    pranks7er mange tout

    Joined:
    25 Dec 2002
    Posts:
    3,515
    Likes Received:
    0
  6. Mr. Roboto

    Mr. Roboto xBurningMikex

    Joined:
    3 Dec 2002
    Posts:
    968
    Likes Received:
    0
    Personal opinion: I don't like frames.
     
  7. pranks7er

    pranks7er mange tout

    Joined:
    25 Dec 2002
    Posts:
    3,515
    Likes Received:
    0
  8. Mr. Roboto

    Mr. Roboto xBurningMikex

    Joined:
    3 Dec 2002
    Posts:
    968
    Likes Received:
    0
    Personal Opinion- I don't like frames because it seems useless on a lot of points to me. I like it more when people use iframes when they are saying something small, otherwise I see frames as useless...but like I said..it's an opinion.
     
  9. Bogomip

    Bogomip ... Yo Momma

    Joined:
    15 Jun 2002
    Posts:
    5,161
    Likes Received:
    39
    alot of people dont like frame, and i dont see why really! they speed up web sites, make them easier to navigate and if used right can make them look better and improve security (everyone doesnt know your page names, cant see the extra PHP variables which may be in the thing (though they could right click :) its just not there, is what i mean ;))). Oh it makes hit counters work a treat better, i mean, on a single frame page, you may have to keep returning to the main page and getting another hit on the counter! if you put the counter in a frame which never changes ;) it only counts you once thus making it more accurate (which as a webmaster i find much more important than just having a high number to show how 133t a page is! ;)).

    just my £0.02p :)
     
    Last edited: 9 Feb 2003
  10. Shad0r

    Shad0r What's a Dremel?

    Joined:
    9 Mar 2002
    Posts:
    33
    Likes Received:
    0
    <- also anti-frames. Includes work a lot better. And as for hit counters that cant tell between a unique and non-unique hit... sounds pretty crap to me :rolleyes:
     
  11. sheepgoat

    sheepgoat What's a Dremel?

    Joined:
    8 Nov 2001
    Posts:
    48
    Likes Received:
    0
    i'm mostly anti frames also. i've seen a few sites that use frames in a unique manner, which i like those. but overall they are a pain in the butt, and usually make a repulsive looking website. especially when people put the left menu in a frame, if there's a scroll bar its in the way and uuugly and then if there's no scroll bar you have to stretch your window down to see the rest of the menu.
     
  12. Hwulex

    Hwulex What's a Dremel?

    Joined:
    1 Feb 2002
    Posts:
    4,007
    Likes Received:
    1
    Frames are ok, and can be great, but so long as they're used properly, and few people can.
    You want to aim for seamless integration though, and not have scroll bars all over, that's what people dislike most about them.

    Most layouts can be achieved with tables that can be done with frames, and people often prefer to work with them.
    If you want a scrolling area, you could always use an overflow div:

    Code:
    <style type="text/css">
    .auto {
      background-color:#00FFFF;
      width:150;
      height:150;
      overflow: auto
    }
    </style>
    
    <br>Auto:<br>
    <div class="auto">
    You can use the overflow property when you want to have better control of the layout.<br><br>
    Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens.
    The default value is visible.
    </div>
     

Share This Page