Welcome Guest, Not a member yet? Register   Sign In
CSS Loading issue
#13

[eluser]Mavrick[/eluser]
Thank JBlack It worked. Smile ... What I did in my CSS file was :
Code:
body {
background-image: url('../images/nature.jpg');
}

And in my header.php view I added the line instead of the CSS :
Code:
<head>
    <meta charset="utf-8">
    <title>Mav!!!</title>
    <link rel="stylesheet" href="<?php echo base_url();?>assets/css/style.css" />
</head>

It was working this way. added the helper in controller ... But there was one more thing left I guess.. i.e. On top of my CSS file I had css for body tag. However when I started browser element inspector It didn't displayed my body css in it. Some how browser omitted the first css for some reason I don't know. So I created an empty pseudo class on top of my body css tag.. And It started loading my css properly.
Code:
<style type="text/css">

.mold{}

body {
background-image: url('../images/nature.jpg');
}

.container {
    background-color: #000;
    width : 100%;
}


a {
color: #003399;
background-color: transparent;
font-weight: normal;
}

h1 {
color: #888;
background-color: transparent;
}

</style>

Though its silly Confusedhut: ... But on the bright side :lol: It worked!!!


Messages In This Thread
CSS Loading issue - by El Forum - 08-17-2011, 01:09 PM
CSS Loading issue - by El Forum - 08-17-2011, 01:33 PM
CSS Loading issue - by El Forum - 08-17-2011, 01:39 PM
CSS Loading issue - by El Forum - 08-17-2011, 02:14 PM
CSS Loading issue - by El Forum - 08-17-2011, 02:23 PM
CSS Loading issue - by El Forum - 08-17-2011, 02:27 PM
CSS Loading issue - by El Forum - 08-17-2011, 02:48 PM
CSS Loading issue - by El Forum - 08-17-2011, 03:10 PM
CSS Loading issue - by El Forum - 08-17-2011, 03:31 PM
CSS Loading issue - by El Forum - 08-17-2011, 03:48 PM
CSS Loading issue - by El Forum - 08-18-2011, 02:21 AM
CSS Loading issue - by El Forum - 08-18-2011, 02:58 AM
CSS Loading issue - by El Forum - 08-18-2011, 04:24 AM
CSS Loading issue - by El Forum - 08-18-2011, 06:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB