I'm trying to remove a half circle div from his parent which is to footer to reveal the underlaying background, does anyone know how I could handle that?
I've already looked for canvas or jquery related solutions but I could find anything
I want achieve something like this:
This is what I have so far
<!DOCTYPE HTML>
<html>
<head>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" />
<link rel="stylesheet" href="css/sticky.css"/>
<script>
</script>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
</div>
</div>
</div>
<div class="container">
<div class="content">
<div class="wrapper">
</div>
<div class="push"></div>
</div>
<div class="footer-wrapper">
<footer>
<center><div class="halfCircleBottom"></div></center>
</footer>
</div>
</body>
</html>
Thanks in advance