Relative link to CSS |
[eluser]ntheorist[/eluser]
one other note, i prefer not to store css/js files within my system folder. I get a bit uneasy planting links anywhere that lead to system files, really. also if you're running .htaccess to remove the index.php from your urls, one of the more popular uses employs removing direct web access to the system but allows for a system front controller : Code: RewriteCond %{REQUEST_URI} ^system.* i don't know if you're using this set of rules but it may be blocking it. Also i'm thinking if you don't have some sort of system rule in place, it may be looking up localhost/clientname/index.php/system/application/views/style/master.css as controller = system, method = application etc i would try quickly setting up a folder 'styles' in your root. Add it to your .htaccess if you're running it: Code: RewriteCond %{REQUEST_FILENAME} !-f Place the css in there and try: <link href="/styles/master.css" rel="stylesheet" type="text/css" />; @chad using <base href="<?php echo base_url(); ?>system/application/views/style" /> wouldn't be such a good idea, as any relative anchor on the page would then point to the styles folder, ie <a href="products/view/123"> would link to http://localhost/clientname/system/appli...s/view/123 _n |
Messages In This Thread |
Relative link to CSS - by El Forum - 07-08-2009, 06:48 PM
Relative link to CSS - by El Forum - 07-08-2009, 07:05 PM
Relative link to CSS - by El Forum - 07-08-2009, 07:35 PM
Relative link to CSS - by El Forum - 07-08-2009, 08:03 PM
Relative link to CSS - by El Forum - 07-08-2009, 08:30 PM
Relative link to CSS - by El Forum - 07-08-2009, 09:14 PM
Relative link to CSS - by El Forum - 07-09-2009, 06:20 AM
Relative link to CSS - by El Forum - 07-09-2009, 11:36 AM
Relative link to CSS - by El Forum - 07-09-2009, 11:52 AM
Relative link to CSS - by El Forum - 07-09-2009, 05:51 PM
Relative link to CSS - by El Forum - 07-09-2009, 07:27 PM
Relative link to CSS - by El Forum - 07-09-2009, 07:30 PM
Relative link to CSS - by El Forum - 07-09-2009, 07:44 PM
Relative link to CSS - by El Forum - 07-09-2009, 10:28 PM
Relative link to CSS - by El Forum - 07-10-2009, 12:15 PM
Relative link to CSS - by El Forum - 07-10-2009, 12:21 PM
Relative link to CSS - by El Forum - 07-10-2009, 01:20 PM
Relative link to CSS - by El Forum - 07-10-2009, 01:39 PM
Relative link to CSS - by El Forum - 07-10-2009, 02:26 PM
Relative link to CSS - by El Forum - 07-10-2009, 02:44 PM
Relative link to CSS - by El Forum - 07-10-2009, 02:48 PM
Relative link to CSS - by El Forum - 07-10-2009, 03:20 PM
Relative link to CSS - by El Forum - 07-10-2009, 03:43 PM
Relative link to CSS - by El Forum - 07-10-2009, 04:22 PM
Relative link to CSS - by El Forum - 07-10-2009, 04:23 PM
Relative link to CSS - by El Forum - 07-10-2009, 04:52 PM
Relative link to CSS - by El Forum - 07-10-2009, 05:54 PM
Relative link to CSS - by El Forum - 07-10-2009, 06:43 PM
Relative link to CSS - by El Forum - 07-10-2009, 07:15 PM
|