![]() |
Codeigniter Pagination Links Problem - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Codeigniter Pagination Links Problem (/showthread.php?tid=54828) |
Codeigniter Pagination Links Problem - El Forum - 09-27-2012 [eluser]Ifan Yozari[/eluser] I am using codeigniter and its pagination class. It has a problem and it looks something like this: Quote: 1<br> Here is my code for controller: Quote: i have this code as my view: Quote: and here is my css: Quote: can anyone tell me what i have to do to make the page link can be in one line.<br> Thanks all for any help. Codeigniter Pagination Links Problem - El Forum - 09-27-2012 [eluser]Unknown[/eluser] Code: $this->pagination->initialize($config); //initialize pagination Codeigniter Pagination Links Problem - El Forum - 09-27-2012 [eluser]Ifan Yozari[/eluser] thanks for your help, but after i put Quote:in the end, it doesn't change the view Codeigniter Pagination Links Problem - El Forum - 09-27-2012 [eluser]srpurdy[/eluser] my guess is you have somewhere in your css an #pagination which probably defines the link as a larger sized div which makes the 2nd link appear under it. for example you probably have a specfic width or something or the css is designed to use the full width available. So each item is on a new line. A Better option would be to make <div id="pagination"> inside the view file. Code: $config['cur_tag_open'] = '<a class="disabled" href="#">'; for the active tag. so you can apply a style to the active page. The way you have it now it's doing this. <div id="pagination">1</div> <div id="pagination">2</div> I don't think that's what you really want... Codeigniter Pagination Links Problem - El Forum - 09-28-2012 [eluser]Ifan Yozari[/eluser] @srpurdy: thanks for your help, but after i try your suggestion, the link still not in one line, once again thanks Codeigniter Pagination Links Problem - El Forum - 09-28-2012 [eluser]Ifan Yozari[/eluser] Thanks to all of you, I already find a solution for the problem. I just need to add Code: float: left; in the css. |