Highlight current selected link in pagelist

Permalink 1 user found helpful
Hello everyone,

I have been searching the forum for answers for this question. But without luck.

I want to highlight the current selected link in my pagelist.

answer:

$pg = Page::getCurrentPage();
$pgID = $pg->getCollectionID();   
   if (count($cArray) > 0) { ?>
   <?php 
   for ($i = 0; $i < count($cArray); $i++ ) {
      $cobj = $cArray[$i]; 
      $title = $cobj->getCollectionName(); 
      if ($cobj->getCollectionID() == $pgID) { ?>
      <a href="<?php echo $nh->getLinkToCollection($cobj)?>"><span class="style5"><strong><?php echo $title?></strong></span></a><br />
      <?php 
        } else {
            ?>
   <a href="<?php echo $nh->getLinkToCollection($cobj)?>"><?php echo $title?></a><br />
    <?php 
   }


Thanks to

87up