Apply active class to "a" element in fuel_nav
Hi everyone,
I have a question regarding the nav class. I want to render a simple plain list of links with the help of the navigation class.
So I came up with the following, which works fine:
<?=fuel_nav(array('container_tag' => '', 'item_tag' => ''))?>
The output of this is - as expected a simple list of a elements:
<a href="">Link</a>
<a href="">Link</a>
<a href="">Link</a>
But, I would like to render the active class to these a elements. How is this possible?
Comments