![]() |
[SOLVED]Pagination Current Link issue - 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: [SOLVED]Pagination Current Link issue (/showthread.php?tid=40013) |
[SOLVED]Pagination Current Link issue - El Forum - 03-27-2011 [eluser]Marlbor0[/eluser] Hello, I have a pagination working on a sandbox blog site http://wips.net.br/johnny/blog/main/content/ i use custom configs on the pagination: Code: $config['cur_tag_open'] = '<li>'; Is anything wring with my code? Thanks alot. [SOLVED]Pagination Current Link issue - El Forum - 03-27-2011 [eluser]byde[/eluser] Your CI code is ok but you have to work with CSS you have this Code: .templatemo_paging ul li a { float: left; display: block; color: #666; text-decoration: none; margin-right: 5px; padding: 5px 10px; background-color: #ccc; border: 1px solid #999; } Code: .templatemo_paging ul li { margin: 0; padding: 0; display: inline } Code: <div class="templatemo_paging"> Code: .templatemo_paging ul li a { text-decoration: none; background-color: #ccc; } This may help you but im sure your CI code is ok. [SOLVED]Pagination Current Link issue - El Forum - 03-27-2011 [eluser]Marlbor0[/eluser] Hey Byde that fixed it, i downloaded this template and well....its a free one :p Thanks alot for your help. |