Hi
I am working on a Joomla 1.7 site for a client. I don't have any experience of FPSS but I know Joomla quite well.
My question is; can the menu links actually link to the joomla page rather than link to the slide. At the moment I can click on an item in the fpss menu and the corresdonding slide shows (plus the marker animates to that particular menu item). I can then click on the slide and I navigate to the correct page. In my opinion that is one too many clicks. Can the menu item link straight to the page?
The code for the menu is currently:
<ul class="navigation">
<?php foreach($slides as $key => $slide): ?>
<li class="navigation-button">
<a<?php echo $slide->target; ?> href="<?php echo $slide->link; ?>" title="<?php echo $slide->altTitle; ?>">
<span class="navigation-info">
<?php if($slide->params->get('title')): ?>
<span class="navigation-title"><?php echo $slide->title; ?></span>
<?php endif; ?>
<?php if($slide->params->get('tagline') && $slide->tagline): ?>
<span class="navigation-tagline"><?php echo $slide->tagline; ?></span>
<?php endif; ?>
</span>
</a>
</li>
<?php endforeach; ?>
</ul>
Can I change this to get what I require?
Thanks