I have been playing at this all day. I want the effect like this link:
http://demo.bloooming.com/rebloom/
You will see in the nav bar that there is a css arrow that is transparent and you can see the background image through it.
I have tried and tried to get this to work and now I have gotten myself into a spin with a headache (not great for a Friday night - that feeling is usually reserved for a Saturday morning). I have searched and searched the internet and found various hints but can't seem to recreate it!!!
Here is the Fiddle
body {
background: url(http://www.conti.co.uk/images/jpg/box-2.jpg);
background-size: cover;
}
.wrap {
width: 500px;
height: 200px;
display: block;
position: relative;
background: #c00;
}
.vc-arrow-left {
width: 20px;
height: 200px;
right: 0;
background: none;
position: absolute;
display: block;
}
.vc-arrow-left:before,
.vc-arrow-left:after {
content: '';
position: absolute;
box-sizing: border-box;
/*background: #000;*/
top: 50%;
right: 0;
margin-top: -10px;
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid green;
}
I left the arrow green to show how I want it - obviously this is just a page of meeting - not the real finished product!!
Thanks