Welcome Guest, Not a member yet? Register   Sign In
Site can not get CSS file
#9

[eluser]StevenTen[/eluser]
Thanks skunkbad, this works fine now!
[quote author="skunkbad" date="1333692816"]If using a base tag try:

Code:
<base href="<?php echo base_url(); ?>" />
<link rel="stylesheet" type="text/css" href="css/style.css">

If not using a base tag, try:

Code:
<link rel="stylesheet" type="text/css" href="/css/style.css">

You could also use codeigniter's link_tag(), which I believe is in the html helper:

Code:
echo link_tag( array( 'href' => 'css/style.css', 'media' => 'screen', 'rel' => 'stylesheet' ) );

And I believe the proper way to use the base_url is like this:

Code:
<link rel="stylesheet" type="text/css" href="<?php echo base_url('css/style.css'); ?>">
[/quote]


Messages In This Thread
Site can not get CSS file - by El Forum - 04-05-2012, 07:28 PM
Site can not get CSS file - by El Forum - 04-05-2012, 10:51 PM
Site can not get CSS file - by El Forum - 04-05-2012, 11:13 PM
Site can not get CSS file - by El Forum - 04-06-2012, 08:05 PM
Site can not get CSS file - by El Forum - 04-06-2012, 08:10 PM
Site can not get CSS file - by El Forum - 04-06-2012, 08:20 PM
Site can not get CSS file - by El Forum - 04-06-2012, 09:30 PM
Site can not get CSS file - by El Forum - 04-06-2012, 09:54 PM
Site can not get CSS file - by El Forum - 04-07-2012, 11:35 AM



Theme © iAndrew 2016 - Forum software by © MyBB