Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Problem with link

Status
Not open for further replies.

redwolfe

MIS
Jan 12, 2000
89
US

I used FrontPage 98 to set up my web site. The site consists of links to other sites. These sites provide the HTML code. The HTML code that I received from Amazon.com is causing a minor problem. The problem is that any code or link that is placed below the code from Amazon.com is not visible. I can view the page in normal mode in FrontPage and everything shows up. However, when I preview the page or look at it in Internet Explorer, nothing below the link is visible. The site address is listed below.
Could someone view the source code and offer some advice.

Thanks
 
First suggestion - Don't use FrontPage.

Your problem is within this block of code located at the bottom of the page:

<div align=&quot;center&quot;>
<p align=&quot;center&quot;><IFRAME width=&quot;120&quot; height=&quot;240&quot; scrolling=&quot;no&quot; frameborder=&quot;0&quot; src=&quot;<area href=&quot; shape=&quot;rect&quot; coords=&quot;14, 200, 103, 207&quot;>
<area href=&quot; shape=&quot;rect&quot; coords=&quot;0, 0, 10000, 10000&quot;><img src=&quot; border=&quot;0&quot; alt=&quot;Shop at Amazon.com&quot; usemap=&quot;#FPMap0&quot; width=&quot;120&quot; height=&quot;240&quot;> </p>
</div>

Your last picture is in an IFRAME, which is what's giving you the problems. Take the pic out of the IFRAME and place it in a table.

Hope this helps.
 
Thank you, your recommendation did work. I have one other problem. I would like all of my links to display in a separate window. In the same block of code I tried placing the command target=&quot;new&quot;. But I wasn't sure exactly where to place it. If you can help me with this, I would greatly appreciate it.

Thanks
 
You can put it at the end of your href tag like:

<a href=&quot;yourpage.htm&quot; target=&quot;_blank&quot;>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top