Welcome Guest, Not a member yet? Register   Sign In
Relative link to CSS
#22

[eluser]cahva[/eluser]
A little tip for your develpment on localhost and online.. You dont have to set anything after going live when you set your base_url in config like this:
Code:
if ($_SERVER['SERVER_NAME'] == 'localhost')
{
    $config['base_url']    = "http://localhost/yourproject/";
}
else
{
    $config['base_url']    = "http://www.yourrealdomain.com/";
}

I myself dont want to use full urls everywhere because it creates http request on every load and for page with lots of images, styles, js etc. it will slow down the site. So if you want to use absolute url path on the server, you can modify your config like this:
Code:
if ($_SERVER['SERVER_NAME'] == 'localhost')
{
    $config['base_url']    = "http://localhost/yourproject/";
    define('ABS_URL','/yourproject/');
}
else
{
    $config['base_url']    = "http://www.yourrealdomain.com/";
    define('ABS_URL','/');
}

And as before mentioned, move your css and other assets outside of codeigniter directory. Much cleaner that way.

So for example if you've copied your master.css to "styles" folder in your project root, you could point your css like this:
Code:
<link href="<?php echo ABS_URL ?>styles/master.css" rel="stylesheet" type="text/css" />;

And because we setup config.php that way, that would work localhost and online no problemo Smile


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



Theme © iAndrew 2016 - Forum software by © MyBB