# \[Pro\] Carousel 2 Links?

**URL:** https://discourse.softpress.com/t/pro-carousel-2-links/17709
**Category:** Freeway
**Created:** [June 7, 2013, 5:55am UTC](https://discourse.softpress.com/t/pro-carousel-2-links/17709 "2013-06-07T05:55:45Z")
**Posts on this page:** 6
**Page:** 1

<div class="post-metadata">

### Author: ![RavenManiac](https://discourse.softpress.com/letter_avatar_proxy/v4/letter/r/91b2a8/32.png) [@RavenManiac](https://discourse.softpress.com/u/RavenManiac)
#### Post date: [June 7, 2013, 5:55am UTC](https://discourse.softpress.com/t/pro-carousel-2-links/17709/1 "2013-06-07T05:55:45Z")

</div>

How do I have a Carousel 2 or Carousel 2 Pane link to an internal or external page? When I select the inline html box that Carousel 2 is applied to their is no link option.

* * *

freewaytalk mailing list  
email@hidden  
Update your subscriptions at:  
[http://freewaytalk.net/person/options](http://freewaytalk.net/person/options)

---

<div class="post-metadata">

### Author: ![waltd](https://discourse.softpress.com/user_avatar/discourse.softpress.com/waltd/32/2720_2.png) [@waltd](https://discourse.softpress.com/u/waltd)
#### Post date: [June 7, 2013, 12:42pm UTC](https://discourse.softpress.com/t/pro-carousel-2-links/17709/2 "2013-06-07T12:42:19Z")

</div>

You cannot apply a link directly to an HTML box. You have to add another element inside the HTML box (graphic or HTML text) and apply the link to that. You can fake a link on an HTML box with JavaScript, but that won’t be a real link and search engines will not follow or index it. This has nothing to do with Carousel, it’s just how HTML works.

Walter

On Jun 7, 2013, at 1:55 AM, RavenManiac wrote:

> How do I have a Carousel 2 or Carousel 2 Pane link to an internal or external page? When I select the inline html box that Carousel 2 is applied to their is no link option.
> 
> * * *
> 
> freewaytalk mailing list  
> email@hidden  
> Update your subscriptions at:  
> [http://freewaytalk.net/person/options](http://freewaytalk.net/person/options)

* * *

freewaytalk mailing list  
email@hidden  
Update your subscriptions at:  
[http://freewaytalk.net/person/options](http://freewaytalk.net/person/options)

---

<div class="post-metadata">

### Author: ![RavenManiac](https://discourse.softpress.com/letter_avatar_proxy/v4/letter/r/91b2a8/32.png) [@RavenManiac](https://discourse.softpress.com/u/RavenManiac)
#### Post date: [June 7, 2013, 12:53pm UTC](https://discourse.softpress.com/t/pro-carousel-2-links/17709/3 "2013-06-07T12:53:06Z")

</div>

Thanks Walter. This is just a contest link, being promoted by a printed piece, so it’s probably better that the search engines don’t index it. 🙂

* * *

freewaytalk mailing list  
email@hidden  
Update your subscriptions at:  
[http://freewaytalk.net/person/options](http://freewaytalk.net/person/options)

---

<div class="post-metadata">

### Author: ![waltd](https://discourse.softpress.com/user_avatar/discourse.softpress.com/waltd/32/2720_2.png) [@waltd](https://discourse.softpress.com/u/waltd)
#### Post date: [June 7, 2013, 1:00pm UTC](https://discourse.softpress.com/t/pro-carousel-2-links/17709/4 "2013-06-07T13:00:58Z")

</div>

View your page in a browser, and manipulate the pane into view. Control-click (or right-click) on the pane that you want to become a link, and choose Inspect Element from the contextual menu. Note the ID of that box (case-sensitive). I am having you do it this way, rather than looking in Freeway, because I believe the Action may manipulate the ID of the box.

Now, apply Protaculous 2 to the page, and click into the DOM Loaded Observer editor. Paste in the following, and then ensure that you change the part that reads ‘theBox’ to the actual ID that you noted in the Web Inspector.

```
$('theBox').observe('click', function(){
	window.location.href = 'http://your-contest-url.com';
}).setStyle('cursor:pointer');

```

Oh, and obviously put in your contest URL, too.

Walter

On Jun 7, 2013, at 8:53 AM, RavenManiac wrote:

> Thanks Walter. This is just a contest link, being promoted by a printed piece, so it’s probably better that the search engines don’t index it. 🙂
> 
> * * *
> 
> freewaytalk mailing list  
> email@hidden  
> Update your subscriptions at:  
> [http://freewaytalk.net/person/options](http://freewaytalk.net/person/options)

* * *

freewaytalk mailing list  
email@hidden  
Update your subscriptions at:  
[http://freewaytalk.net/person/options](http://freewaytalk.net/person/options)

---

<div class="post-metadata">

### Author: ![RavenManiac](https://discourse.softpress.com/letter_avatar_proxy/v4/letter/r/91b2a8/32.png) [@RavenManiac](https://discourse.softpress.com/u/RavenManiac)
#### Post date: [June 7, 2013, 1:10pm UTC](https://discourse.softpress.com/t/pro-carousel-2-links/17709/5 "2013-06-07T13:10:22Z")

</div>

Am I better off using this technique instead of the javascript option you posted here?

[http://freewaytalk.net/thread/view/40140#latest](http://freewaytalk.net/thread/view/40140#latest)

* * *

freewaytalk mailing list  
email@hidden  
Update your subscriptions at:  
[http://freewaytalk.net/person/options](http://freewaytalk.net/person/options)

---

<div class="post-metadata">

### Author: ![waltd](https://discourse.softpress.com/user_avatar/discourse.softpress.com/waltd/32/2720_2.png) [@waltd](https://discourse.softpress.com/u/waltd)
#### Post date: [June 7, 2013, 1:31pm UTC](https://discourse.softpress.com/t/pro-carousel-2-links/17709/6 "2013-06-07T13:31:43Z")

</div>

Either one should work. This is neater, since you don’t have to put script inline in your HTML. It’s considered the more professional of the two. In function, they are more or less identical.

Walter

On Jun 7, 2013, at 9:10 AM, RavenManiac wrote:

> Am I better off using this technique instead of the javascript option you posted here?
> 
> [http://freewaytalk.net/thread/view/40140#latest](http://freewaytalk.net/thread/view/40140#latest)
> 
> * * *
> 
> freewaytalk mailing list  
> email@hidden  
> Update your subscriptions at:  
> [http://freewaytalk.net/person/options](http://freewaytalk.net/person/options)

* * *

freewaytalk mailing list  
email@hidden  
Update your subscriptions at:  
[http://freewaytalk.net/person/options](http://freewaytalk.net/person/options)
