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
Here is my working code for Bootstrap v4.0
$config['full_tag_open'] = '';
$config['full_tag_close'] ='
';
$config['num_tag_open'] = '- ';
$config['num_tag_close'] = '
';
$config['cur_tag_open'] = '- ';
$config['cur_tag_close'] = '
';
$config['next_tag_open'] = '- ';
$config['next_tagl_close'] = '
';
$config['prev_tag_open'] = '- ';
$config['prev_tagl_close'] = '
';
$config['first_tag_open'] = '- ';
$config['first_tagl_close'] = '
';
$config['last_tag_open'] = '- ';
$config['last_tagl_close'] = '
';
$config['attributes'] = array('class' => 'page-link');