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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HTML Calendar Coding 1

Status
Not open for further replies.

smittywes38

Technical User
Apr 16, 2004
42
0
0
US
I have a calendar coded already and want to set a hyperlink within a specific day on the calendar. See Below. My link does not work within the day I have the link associated with. What am I doing wrong?

<tr>
<td valign='top' align='right' height='175' width='175'>6</td>
<td <a href=" valign='top' align='right'>7 </a></td>
<td valign='top' align='right'>8</td>
<td valign='top' align='right'>9</td>
<td valign='top' align='right'>10</td>
<td valign='top' align='right'>11</td>
<td valign='top' align='right'>12</td>
</tr>

Any thought on this is appreciated.

Thanks,
Smitty
 
Looks like you've got your tag delimiters in the wrong place. Try this:
[tt]
<td valign='top' align='right'><a href=" 7 </a></td>[/tt]

You might also want to move the space (after the 7) outside the hyperlink, but that's a minor cosmetic issue.

Mike

__________________________________
Mike Lewis (Edinburgh, Scotland)

Visual FoxPro articles, tips and downloads
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top