I'm trying to get the nav to show only when the carousel is hovered but not sure how to approach this. Should I be using a visibility toggle?
EDIT
http://jsfiddle.net/TWtwt/470/
.owl-theme .owl-controls .owl-nav [class*=owl-] {
color: #fff;
font-size: 14px;
font-family: 'KeplerStd-Regular';
display: block;
cursor: e-resize;
}
.owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
background-color: #1f1f1f;
transition: 0.5s all;
cursor: e-resize
}