I am using the jQuery slider that comes with Pagelines Platform Pro, and my question is:
Is there a way to make the feature names in the navigation bar link to pages, and still function as the navigation bar for the slideshow?
Right now I have it so the pageEvent
is mouseover
so that when you hover on the featurenav bar on a corresponding feature name it goes to that slide. Now I just need it to also go to that page when you click on the name in the slideshow nav bar.
Here is a link t开发者_如何转开发o the test site: sysorexhosting.com
so whats the problem. you have got an <a>
tag with #
in href. just replace it with your url
<a href="#" class=""> International Development</a>
Change it to
<a href="?page_id=19" class=""> International Development</a>
精彩评论