CodeIgniter Forums
Problem loading style and other types files from the base directory of IC - 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: Problem loading style and other types files from the base directory of IC (/showthread.php?tid=56492)



Problem loading style and other types files from the base directory of IC - El Forum - 12-23-2012

[eluser]Unknown[/eluser]
I have question: I have my css file located in the base directory outside of application folder, when I run the website in the browser, the css file can't be found. The content from the view is fully loaded. This how the link is layed out:
Code:
<link rel="stylesheet" href="<?php echo base_url() ?>assets/styles/reset.css">
What could be problem?


Problem loading style and other types files from the base directory of IC - El Forum - 12-23-2012

[eluser]InsiteFX[/eluser]
Because your link is wrong:
Code:
missing ( type="text/css" )
<link type="text/css" rel="stylesheet" href="<?php echo base_url('assets/styles/reset.css');?>">



Problem loading style and other types files from the base directory of IC - El Forum - 12-23-2012

[eluser]Unknown[/eluser]
Thanks