Welcome Guest, Not a member yet? Register   Sign In
how to insert a css on codeingiter
#4

[eluser]Mischievous[/eluser]
Welcome to CodeIgniter community Stelab!

If your CSS is located anywhere inside your site root you must specify where its located in your .htaccess file

Code:
RewriteEngine on
RewriteCond $1 !^(index\.php|templates|media|robots\.txt|css)
RewriteRule ^(.*)$ index.php/$1 [L]

*Note: look at the last part of the second line of code "|css" should be where ever your css is located or if you put it in your root it should be your "|css\.css"

Also when loading your css in a view be sure to load up the url helper and run <?=base_url()?> to get your absolute path incase you change the base url in your config file you dont have to go through all your view files to change! Wink


Messages In This Thread
how to insert a css on codeingiter - by El Forum - 04-05-2010, 04:12 AM
how to insert a css on codeingiter - by El Forum - 04-05-2010, 07:59 AM
how to insert a css on codeingiter - by El Forum - 04-05-2010, 08:43 AM
how to insert a css on codeingiter - by El Forum - 04-05-2010, 10:35 AM
how to insert a css on codeingiter - by El Forum - 04-05-2010, 06:16 PM
how to insert a css on codeingiter - by El Forum - 04-07-2010, 10:33 AM
how to insert a css on codeingiter - by El Forum - 04-07-2010, 10:49 AM
how to insert a css on codeingiter - by El Forum - 04-07-2010, 11:06 AM
how to insert a css on codeingiter - by El Forum - 04-07-2010, 11:27 AM
how to insert a css on codeingiter - by El Forum - 05-05-2010, 06:24 AM



Theme © iAndrew 2016 - Forum software by © MyBB