Pagination current link not highlighting Pagination current link not highlighting codeigniter codeigniter

Pagination current link not highlighting


Read this and find the "Customizing the "Current Page" Link" section. Use that to add custom markup then add appropriate CSS.

Edit: the OP found the following solution:

$pagination['uri_segment'] = 2;


Add these line and write css for .current class

$pagination['cur_tag_open'] = '<a href="javascript:void(0)" class="current">';$pagination['cur_tag_close'] = '</a>';$pagination['cur_page'] = {put current page no here};


Check your $config['uri_segment']. Otherwise handle from jquery. Do somethings like:-

Suppose your link:-

<div id="my-ci-link"><?php echo $links; ?></div>

write jQuery:-

$('#my-ci-link strong').css('color','green');