Insert URL into Carousel Slide
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2017 10:58 AM
Hello, is there a way to insert a clickable URL into a Carousel Slide?
Thank you,
Heather Swearingen
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2017 01:49 PM
I'm not sure if you're looking to modify some out of box functionality or what, but generally you can make an image clickable through code similar to the following:
You are essentially embedding your <img> tag within your <a> tag, making the entire image clickable. This is what we use on our image carousel for one of our public ServiceNow-based sites.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-19-2017 02:23 PM
<div class="item">
<img src="https://unsplash.it/800/600" alt="">
<div class="container">
<div class="carousel-caption">
<h1>Google</h1>
<p class="lead">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.</p>
<a class="btn btn-large btn-primary" href="https://www.google.com ">Visit</a>
</div>
</div>
</div>
It makes the caption on a carousel clickable.
Hope this helps!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-20-2017 10:49 AM
