Welcome Guest, Not a member yet? Register   Sign In
Problem loading style and other types files from the base directory of IC
#1

[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?
#2

[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');?>">
#3

[eluser]Unknown[/eluser]
Thanks




Theme © iAndrew 2016 - Forum software by © MyBB