[eluser]GroundScore[/eluser]
I want to integrate skeleton css boilerplate with code igniter, but it wont load the css, do you know what i might be doing wrong, it all just stackes on top of each other?
Code:
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Your Page Title Here :)</title>
<meta name="description" c>
<meta name="author" c>
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" c initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="<?php echo base_url().'stylesheets/base.css'; ?>">
<link rel="stylesheet" href="<?php echo base_url().'stylesheets/skeleton.css'; ?>">
<link rel="stylesheet" href="<?php echo base_url().'stylesheets/layout.css'; ?>">
<!--[if lt IE 9]>
[removed][removed]
<![endif]-->
<!-- Favic -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
</head>
<body>