I have an index page for a django project I am working on but the images I attach to the buttons aren't showing up when I view it.
<html>
<head>
<title>Support Tools</title>
<style type="text/css">
.button {
float: left;
margin-left: 30px;
margin-bottom: 30px;
width: 350px;
height: 150px;
background: url('/media/img/blank.png');
background-repeat: no-repeat;
cursor: hand;
}
.button img {
position: relative;
left: 20px;
top: 10px;
}
.button div {
font-family: Trebuchet MS, Calibri;
color: white;
font-weight: bold;
font-size: 22pt;
text-align: center;
position: relative;
top: -100px;
left: 120px;
width: 220px;
}
.title {
font-family: Calibri, Helvetica, Arial, Verdana;
font-size: 18pt;
font-weight: bold;
}
a, a:link, a:visited, a:active, a:hover {
text-decoration: none;
}
</style>
<!--[if lte IE 6]>
<script type="text/javascript" src="/media/js/supersleight-min.js"></script>
<![endif]-->
</head>
<body id="b">
<p class="title">GAI Support Tools</p>
<a href="/eam/">
<div class="button">
<img src="/media/img/tools.png" />
<div>EAM<br />Support Tool</div>
</div>
</a>
<a href="/admin/minisar/">
<div class="button">
<img src="/media/img/database.png" />
<div>miniSAR<br />Administration</div>
</div>
</a>
<a href="/ai_stats/">
<div class="button">
<img src="/media/img/chart.png" />
<div>Web Service<br />Dashboard</div>
</div>
</a>
<a href="/health/production/">
<div class="button">
<img src="/media/img/monitor.png" />
<div> Web Service<br />Health</div>
</div>
</a>
<a href="/toys/user/">
<div class="button">
<img src="/media/img/users.png" />
<div>User<br />Search</div>
</div>
</a>
<a href="/toys/ud_data_extract/">
<div class="button">
<img src="/media/img/database.png" />
<div>UD Data<br />Extract</div>
</div>
</a>
<a href="/solutions/">
<div class="button">
<img src="/media/img/solutions.png" />
<div>Solution Matrix</div>
</div>
</a>
<a href="/directentry/">
<div class="button">
<img src="/media/img/dice.png" />
<div style="text-align: left; padding-left: 2.5em;"><u>DI</u>rect<br /><u>C</u>XML<br /><u>E</u>ntry</div>
</div>
</a>
<script type="text/javascript">
supersleight.limitTo("b");
supersleight.init();
</script>
</body>
</html>
It just shows up as a broken image link, but all of the .png files are in the
/media/img/
folder.