Ok with PHP and templating involved you probably don't want to edit that part of your page unless you're familiar with PHP. Is the entire markup of your featured content glider dynamically generated, ie, the following portion as well:
Code:
<div id="canadaprovinces" class="glidecontentwrapper">
<div class="glidecontent" data-url="http://www.cnn.com">
<img src="http://i11.tinypic.com/8efzmmf.jpg" style="float: left; padding: 5px" />
British Columbia is the westernmost of Canada's provinces and is famed for its natural beauty. It's capital is Victoria, located at the southeastern tip of Vancouver Island. BC's most populous city is Vancouver, located in southwest corner of the BC mainland called the Lower Mainland.
</div>
<div class="glidecontent" data-url="http://www.google.com">
<img src="http://i15.tinypic.com/72vilba.jpg" style="float: right; padding: 5px"/>
Ontario is a province located in the central part of Canada, the largest by population and second largest, after Quebec in total area. Toronto, the capital of Ontario, is the centre of Canada's financial services and banking industry.
</div>
<div class="glidecontent" data-url="http://www.dynamicdrive.com">
<img src="http://i17.tinypic.com/8bg0lkx.jpg" style="float: left; padding: 5px"/>
Yukon, still commonly referred to as "The Yukon Territory", is the westernmost of Canada's three northern territories. The Yukon's major appeal is its nearly pristine nature. Tourism relies heavily on this and there are many organised outfitters and guides available to hunters and anglers and nature lovers of all sorts.
</div>
</div>
I'm trying to figure out which portion is not- and just static HTML you add manually to your page- in which I can use to define the URL of each pagination link.
Bookmarks