A place for discussion about skinning and design. Before posting questions here you should review the documentation about creating skins.
I have added an HTML Module to a page, enabled the element slide show and it works fine except the slide content links are only advancing the slides and not navigating to the target. I have included the html module settings and the markup to see what I could be missing.
Settings:
Enable Slide Show of Elements = True
Enable slide click = false
cssclass = featurebanner
Enable Slide Show Pager = True
Markup:
<div class="featurebanner" style="width:100%;"> <div> <h1>Slide 1 </h1>
<p>Slide 1 details <a href="http://www.mojoportal.com">here</a></p> </div>
<div> <h1>Slide 2</h1>
<p>Slide 2 information</p> </div>
<div> <h1>Slide 3</h1>
<p>Slide 3 information</p> </div> </div>
Thanks,
Joe
Hi, see the note near the end of the HTML Content Module document. You'll need to add a bit of JavaScript to your link in order for it to work within the slideshow.
onclick="window.open(this.href,'_self');return false; "
OOPS, Missed that one..Working now ..