bootstrap 3 pagination with codeigniter

前端 未结 5 1000
不知归路
不知归路 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:35

    Just change the below parameters :-

    $config['full_tag_open'] = '';
    

    Replace it with :-

    $config['full_tag_open'] = '
      '; $config['full_tag_close'] = '
    ';

提交回复
热议问题