Welcome Guest, Not a member yet? Register   Sign In
Can not load css and image file in assets ?
#1

[eluser]ryantran[/eluser]
My structure is :
- assets
- public
- css
- images
- admin
- mysite
- application
- system

In controller file :
Code:
$data['css']['style'] = $this->assets->load('style.css');
$data['asset_img']['logo'] = $this->assets->load('logo.png');

In view file :
Code:
{$css['style']} // smarty code

My problems are :
1. CSS file did not linked.
2. Image did not load. When i show my code in browser :
Code:
<img src='http://localhost/mysite/assets/public/imageslogo.png' />
- How to remove mysite in my link ?
- Between Folder link and file link has not "/". How to add it ? (I tried to add in "/" font of file name in controller but i do not think that is a good solution Sad )

Plz help me ? Thanks again ! ^ ^

PS/ Sry, if i posted many. (I have recent post in Wiki Artical Discussions)
#2

[eluser]InsiteFX[/eluser]
Code:
&lt;base href="&lt;?php echo base_url();?&gt;"&gt;
&lt;link type="text/css" rel="stylesheet" href="assets/css/styles.css"&gt;

Or
Code:
&lt;link type="text/css" rel="stylesheet" href="&lt;?php echo site_url();?&gt;assets/css/styles.css"&gt;

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

InsiteFX
#3

[eluser]ryantran[/eluser]
Thanks pro !
I fixed image link. But css file have not yet.
In my code on browser i see my problem is
Code:
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
&lt;title&gt;My site&lt;/title&gt;




&lt;/head&gt;

&lt;body&gt;
    &lt;!--&lt;link type='text/css' rel='stylesheet' href='http://localhost/assets/public/css/style.css' /&gt;
--&gt;
&lt;!-- main --&gt;

I do not understant why that code appered in &lt;body&gt;&lt;/body> although i placed it in &lt;head&gt;&lt;/head> ?
#4

[eluser]InsiteFX[/eluser]
Your CSS link needs to go in the &lt;head&gt; &lt;/head&gt; tags!
Code:
base href="&lt;?php echo base_url();?&gt;">
&lt;link type="text/css" rel="stylesheet" href="assets/public/css/styles.css"&gt;

InsiteFX




Theme © iAndrew 2016 - Forum software by © MyBB