On my site for whatever reason the CSS is refusing to take effect on the html and as far as I can tell its only from that specific sheet, my global one seems to be working fine.
HTML:
<!DOCTYPE html>
<html>
<head>
<title>Anise Technologies</title>
<meta charset="utf-8">
<?php include 'global/includes/header.php'?>
<link rel="stylesheet" type="text/css" href="home.css">
</head>
<body>
<?php include 'global/includes/nav.php'?>
<div id="main">
<div id="slider">
</div>
<div id="promo-tiles">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
</div>
<?php include 'global/includes/footer.php'?>
</body>
</html>
CSS:
@charset "utf-8";
/* CSS Document FOR HOME PAGE ONLY*/
.main {
height: 100%;
}
.slider {
height: 60%;
}
.promo-tiles {
height: 30%;
}
.promo-tiles-ul{
width: 25%;
display: inline-block;
list-style: none;
}
.promo-tiles li{
color: white;
}