Does anyone have a solution for removing a half circle div from its parent (footer) to reveal the background underneath?
I've searched for canvas and jQuery solutions but haven't found anything that works.
I am aiming to achieve something similar to this:
Here is what I have attempted 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>
Thank you in advance for your help!