Log in

View Full Version : Open links within your page



Defender90
04-03-2008, 10:49 PM
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

thetestingsite
04-03-2008, 10:50 PM
Perhaps an iframe would be the best solution. Just make the iframe like so:



<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:



<a href="http://offsite-website.com" target="offsite_frame">Description</a>


Hope this helps.

Defender90
04-06-2008, 01:03 PM
Got it working.

Thanks for the help.

Defender90
04-06-2008, 01:05 PM
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