CodeIgniter Forums
Css output screen on browser - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Using CodeIgniter (https://forum.codeigniter.com/forumdisplay.php?fid=5)
+--- Forum: General Help (https://forum.codeigniter.com/forumdisplay.php?fid=24)
+--- Thread: Css output screen on browser (/showthread.php?tid=69182)



Css output screen on browser - Mike - 10-17-2017

Hallo master ,i'm new in codeigniter n i have problem with css screen output, when i click menu nav the output got affected but when i click another menu such: profile or contact menu it is not affect, why???? i use template lib n i got it from jerome jaglale, my file like this :  in the views
Code:
<div id="menu">
  <ul>
    <li><?php echo anchor('', 'home');?></li>
    <li><?php echo anchor('welcome/profile', 'profile');?></li>
    <li><?php echo anchor('welcome/contact', 'contact');?></li>
  </ul>
</div>
n my css i use internal css
Code:
Body{
Background-image: url(css/image/pattern.png);

Somebody please help thanks....