Results 1 to 4 of 4

Thread: Open links within your page

  1. #1
    Join Date
    Oct 2007
    Posts
    49
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default Open links within your page

    Hi,

    I have a page I'm building with multiple links to vendor sites. The client wants to have all of the links to open the vendor pages within their site. Below the header/nav. I have the page built but am unsure how to make each off site link open under the page header/navigation.

    Anyone have advice>
    Thanks

  2. #2
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    Perhaps an iframe would be the best solution. Just make the iframe like so:

    Code:
    <iframe src="default_webpage.html" name="offsite_frame" width="100%" height="50">Your browser does not have support for iframes.</iframe>
    Then make your links like so:

    Code:
    <a href="http://offsite-website.com" target="offsite_frame">Description</a>
    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  3. The Following User Says Thank You to thetestingsite For This Useful Post:

    Defender90 (04-06-2008)

  4. #3
    Join Date
    Oct 2007
    Posts
    49
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default

    Got it working.

    Thanks for the help.

  5. #4
    Join Date
    Oct 2007
    Posts
    49
    Thanks
    10
    Thanked 0 Times in 0 Posts

    Default

    The only other question I have is can you center the off site page in the frame, even if they have their site not centered?


    Thanks

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
  •