I am having trouble getting the header to appear on the web. The mainframe shows up fine. In FP03, I can preview the page properly and am able to click a button taking the user back to my home page. It is www.condosofct.com, choose, About Me, then choose, Search MLS. My goal is to keep the user from actually leaving my site once they search an outside site. Thank you in advanced for looking at this!!

My code for the mainframe is:

<html>
<head>
<title>CondosofCT.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head>

<frameset rows="54,*" frameborder="NO" border="0" framespacing="0">
<frame name="topFrame" scrolling="NO" noresize src="headerforsearchmls.htm" >
<frame name="mainFrame" src="http://coldwellbankermoves.com">
</frameset>

<noframes><body bgcolor="#FFFFFF" text="#000000">

</body></noframes>
</html>

and my code for the header is.....


<html>
<head>
<title>CondosofCT.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body bgcolor="#800000" text="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" leftmargin="0" topmargin="0">
<table width="100%" border="0" cellspacing="3" cellpadding="3">
<tr>
<td><font size="3" face="Arial, Helvetica, sans-serif">Linda Edelwich, Coldwell Banker Residential Brokerage</font></td>
<td width="30"><font size="3" face="Arial, Helvetica, sans-serif">&nbsp;</font></td>
<td><div align="right"><font size="3" face="Arial, Helvetica, sans-serif"><a href="index.htm" target="_parent"><img src="images/backHome.jpg" width="85" height="22" border="0"></a></font></div></td>
</tr>
</table>
</body>
</html>

Recommended Answers

All 2 Replies

I don't quite understand the question. What is "FP03"?

Let me take a guess? You want users to search the MLS database from your site, but don't want them to "navigate away from" your site?

Easiest approach, make the MLS link open in a new window. That way, when they close the MLS window, your site will still be there, open and ready for the user.

Just add the attribute target="_blank" to your "Search MLS" anchor tag.

FP03 is Front Page '03

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.