0

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 to the test site: sysorexhosting.com

Danny Beckett
  • 20,529
  • 24
  • 107
  • 134
Bobby
  • 3
  • 2
  • 3
    u shud put some code to help urself :) coz no one here can be bothered to check a whole website source-code to find ur problem lol at least tell us where you think the problem is – Val Feb 22 '11 at 17:18

1 Answers1

1

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>
Shekhar_Pro
  • 18,056
  • 9
  • 55
  • 79
  • that works to make links that go to the page but I also need it to still navigate the slides. so that when you hover over it goes to that slide and then when you click it goes to that page. thanks – Bobby Feb 25 '11 at 15:00