I've been struggling to get my box-shadow to show up for a whole day now with no luck. Even after removing the background image and trying various fixes like -webkit, -moz, and z-index, the shadow just won't display.
Here's the HTML snippet:
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Unknown</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
<link rel="stylesheet" type="text/css" href="css/basic.css">
<link rel="stylesheet" type="text/css" href="css/navbar.css">
<link rel="stylesheet" type="text/css" href="css/font.css">
<script type="text/javascript" src="js/navbar.js"></script>
</head>
<body>
<font face ="Alex Brush" size="5">
<div id="container">
<div id="paper">
<font color="#fff">
<a href="index.html">
<div id="title"></div>
<p id="asd">Unknown</p>
</a>
</font>
<div id="navbar">
<font color="black">
<div class="topnav" id="myTopnav">
<div id="sub-nav">
<div id="mini-nav-head">
<a id="responds" href="#home" class="active">Home</a>
<a class="icon" onclick="change()"><i class="fa fa-bars"></i></a>
</div>
<a id="respondy" href="#contact">Bouquets</a>
<a id="respond" href="#about">Weddings</a>
<a id="respond" href="#about">About us</a>
<a id="responde" href="mail/contact.php">Contact us</a>
</div>
</div>
</font>
</div>
</div>
</div>
</body>
</html>
The CSS (navbar.css):
/*CSS code for navbar goes here*/
The other CSS (basic.css):
/*CSS code for basic styling goes here*/
Any fellow developers have suggestions on how to resolve this issue?