Results 1 to 3 of 3

Thread: Help with navagator and layer things

  1. #1
    Join Date
    Aug 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Exclamation Help with navagator and layer things

    Im not really sure what script i will need to get for this.

    All i need is a scirpt which will when i click on a button in the navagation to the left the page will open but not replacing the background and title thing.
    So its just opening the page and putting it in the middle of page without taking out the Background stuff.

    Dont understand me ? Check out this site to see what i mean. click here.

    Please help

  2. #2
    Join Date
    Jul 2006
    Location
    Canada
    Posts
    2,581
    Thanks
    13
    Thanked 28 Times in 28 Posts

    Default

    One way to do this is to use an iframe (usefull when used correctly )

    This is just an example of a menu on the left, and it opening in an iframe in the center of the page:

    Code:
    Navigation:
    <br><a href="http://www.yahoo.ca/" target="newpage">Yahoo.ca</a>
    <br><a href="http://www.mamma.com/" target="newpage">Mamma.com</a>
    <br><a href="http://www.google.ca/" target="newpage">Google.ca</a>
    <iframe name="newpage" width="600" height="400" style="position:absolute;left:200px;top:100px">
    - Mike

  3. #3
    Join Date
    Aug 2006
    Posts
    2
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Quote Originally Posted by mburt
    One way to do this is to use an iframe (usefull when used correctly )

    This is just an example of a menu on the left, and it opening in an iframe in the center of the page:

    Code:
    Navigation:
    <br><a href="http://www.yahoo.ca/" target="newpage">Yahoo.ca</a>
    <br><a href="http://www.mamma.com/" target="newpage">Mamma.com</a>
    <br><a href="http://www.google.ca/" target="newpage">Google.ca</a>
    <iframe name="newpage" width="600" height="400" style="position:absolute;left:200px;top:100px">

    Thanks for that. I can work with that

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
  •