Results 1 to 4 of 4

Thread: Frames

  1. #1
    Join Date
    Apr 2004
    Location
    Peterborough
    Posts
    120
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Frames

    Hi

    I'm having ago at my first attempt at frames - yuk - well just thought i'd teach myself

    Now I have three frames - called A.html. B.html and and blank.html

    A.html is a link to the navigation of the site with menus at the top of the frame and in B.html which is left frame I want to say when you click on DVDS it will take me to the DVDS MENU which is called dvds.html - then when I click on the title from my list I want it to bring the item from the list - say Harry Potter in the main frame - blank.html

    Many thanks
    Andrew

  2. #2
    Join Date
    Sep 2005
    Location
    Halton, UK
    Posts
    97
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    To do that you have to specify names for the frames in your frameset page. Then you can use the target attribute on your links to specify which frame the link should be loaded in.

    Example frameset:
    (could be a few typos in here, haven't done framesets in years and I'm doing it from the top of my head)
    <frameset>
    <frame name="menu" href="menu.html" />
    <frame name="content" href="standard.html" />
    </frameset>

    Then in menu.html you can have a link such as:
    <a href="dvds.html" target="content">dvds</a>

    Hope that makes sense and doesn't contain too many errors .

  3. #3
    Join Date
    Apr 2004
    Location
    Peterborough
    Posts
    120
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks i'll give it a try

  4. #4
    Join Date
    Jan 2005
    Location
    Cardiff
    Posts
    447
    Thanks
    10
    Thanked 17 Times in 17 Posts

    Default

    Quote Originally Posted by Suzanne View Post
    try this one...
    Three years later?
    I suspect spam.


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

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
  •