PDA

View Full Version : Activating a link from my home page?


kriyababaji
Jan-13-2008, 01:03 PM
G'Day

I have created a couple of workshops and two wildlife safaris for 2008, I would like to create a link that takes visitors directly to my "Workshops" page directly from my home page in one click.

So, here is my home page:

http://www.wildearthilluminations.com/

Here is the HTML for that page:

<div align="center" id="mySlideshow"></div>
<html>
<div align="center"><br>
<strong><font size="3">2008 Workshops & Safaris - Now Available</font></strong><br><br>
<table width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top">
<div align="center"><a href="http://www.wildearthilluminations.com/Image%20Galleries/220059">Private Access</a></div>
</td>
<td valign="top" width="75">
<div align="center"><b>|</b></div>
</td>
<td valign="top">
<div align="center"><a href="http://www.wildearthilluminations.com/gallery/1757596">Enter Site</a></div>
</td>
</tr>
</table>
</div>
</html>

at the bottom of the slide show I have included a text block which states "2008 Workshops & Safaris - Now Available". I want this to be an active link to my main "Workshop" page here:

http://www.wildearthilluminations.com/gallery/4145448

How can I link "2008 Workshops & Safaris - Now Available" on my home page to this http://www.wildearthilluminations.com/gallery/4145448, my workshop page?

Thanks, Shane

denisegoldberg
Jan-13-2008, 01:10 PM
You can make it an active link by using <a href= html.

Here's the html - remove the *s before using it, included to keep the forum software from swallowing the code:
<strong>
<font size="3">
<*a href="http://www.wildearthilluminations.com/gallery/4145448">2008 Workshops & Safaris - Now Available<*/a>
</font></strong>

--- Denise

kriyababaji
Jan-13-2008, 01:16 PM
Thanks Denise

I don't know what you mean by....remove the *s ?

Can you clarify?

Thanks, Shane


You can make it an active link by using <a href= html.

Here's the html - remove the *s before using it, included to keep the forum software from swallowing the code:
<strong>
<font size="3">
<*a href="http://www.wildearthilluminations.com/gallery/4145448">2008 Workshops & Safaris - Now Available<*/a>
</font></strong>

--- Denise

denisegoldberg
Jan-13-2008, 01:31 PM
Thanks Denise

I don't know what you mean by....remove the *s ?

Can you clarify?

Thanks, Shane
There are a couple of * in the code. If I don't include them, the forum code scrambles the html. They are in the <a and </a pieces of the code. Just copy the code and remove the *.

--- Denise

kriyababaji
Jan-13-2008, 02:44 PM
That did it.

Thanks Denise :clap


There are a couple of * in the code. If I don't include them, the forum code scrambles the html. They are in the <a and </a pieces of the code. Just copy the code and remove the *.

--- Denise