Welcome Guest, Not a member yet? Register   Sign In
css file and methods
#11

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

it does not work this way Sad(
#12

[eluser]Ivar89[/eluser]
try this:
Code:
<?php echo link_tag('/style.css'); ?>
should work
#13

[eluser]mysterious[/eluser]
<code>&lt;link href="&lt;?php echo base_url(); ?&gt;style/style.css" rel="stylesheet" type="text/css" /&gt;&lt;/code>

Thank God its fixed now...

Thanks mddd, ricardino, lvar89... Smile
#14

[eluser]Unknown[/eluser]
Perhaps a little bit late but perhaps of some use. You can also use the site_url() function.

Code:
&lt;link rel="stylesheet" type="text/css" href="&lt;?=site_url('style/file.css')?&gt;" /&gt;
#15

[eluser]mysterious[/eluser]
Solved:

Code:
&lt;link href="&lt;?php echo base_url(); ?&gt;style/style.css"  rel="stylesheet"  type="text/css"  /&gt;

thnx madd and other frnds..




Theme © iAndrew 2016 - Forum software by © MyBB