NOTE : I just realized that something is wrong with my CSS, the browser only view my old css (means that i cant edit my css). Whats wrong?I tried to follow this tutorial , but i dont do the exact same thing like the video.I want to edit the appereance of my \[code\]pagination\[/code\] links (using \[code\]codeigniter\[/code\]). This is the controller code :\[code\]//pagination $config['base_url'] = site_url('/backend/umat/'); //$config['base_url'] ='http://localhost/ci_gabdb/index.php/backend/umat/'; $config['total_rows'] = $this->backend_m->count_umat(); $config['per_page'] = 10; $config['uri_segment'] = 3; $config['full_tag_open'] = '<div id="pagination">'; $config['full_tag_close'] = '</div>'; $this->pagination->initialize($config); $data['pagination'] = $this->pagination->create_links();\[/code\]Notice that i already use \[code\]full_tag_open\[/code\] and \[code\]full_tag_close\[/code\]. I also tried to manually insert the \[code\]<div>\[/code\] tag in html, but none of them working.This is my \[code\]css\[/code\] code :\[code\]#pagination a { font-family: Tahoma, Geneva, sans-serif; font-size: 10px; color: #292929; text-decoration: none; background: #e3e3e3; border: 1px solid #000; padding: 4px 7px;}\[/code\]I think the paginations css should working properly, but its not. Where is my mistake? Thanks