I am making a web app with CodeIgniter and Twitter Bootstrap. I found a resource online with a list of $config settings to style the pagination links properly. Is there a way to
The bellow working fine
$config["base_url"] = base_url() . "product/product/index1";
$config["total_rows"] = $count_products;
$config['per_page'] = 2;
$config['uri_segment'] = 4;
$config['num_links'] = 9;
$config['full_tag_open'] = '';
$config['full_tag_close'] = '
';
$config['first_link'] = '« First';
$config['first_tag_open'] = '- ';
$config['first_tag_close'] = '
';
$config['last_link'] = 'Last »';
$config['last_tag_open'] = '- ';
$config['last_tag_close'] = '
';
$config['next_link'] = 'Next →';
$config['next_tag_open'] = '- ';
$config['next_tag_close'] = '
';
$config['prev_link'] = '← Previous';
$config['prev_tag_open'] = '- ';
$config['prev_tag_close'] = '
';
$config['cur_tag_open'] = '- ';
$config['cur_tag_close'] = '
';
$config['num_tag_open'] = '- ';
$config['num_tag_close'] = '
';
$this->pagination->initialize($config);