bootstrap 3 pagination with codeigniter

前端 未结 5 994
不知归路
不知归路 2020-12-13 04:41

I cant integrate the bootstrap 3 in my pagination, I am using codeigniter in my system, here is my code so far

$config[\'base_url\'] = base_url().\"/merchant         


        
5条回答
  •  抹茶落季
    2020-12-13 05:33

    I find useful to redefine the standard label to have arrows instead:

    $config['first_link'] = "«";
    $config['last_link'] = "»";
    

    It is also possible to customize prev_link and next_link

提交回复
热议问题