I attempted to style the navigation list with the following CSS:
#navlist:hover #left-arrow {
border-top: 10px solid white;
position: relative;
transform: translateX(120.2px) rotate(180deg);
}
Would it be better to use jQuery for the rotation effect?
This is what I experimented with using jQuery:
$('#navlist').find('#left-arrow').hover(function() {
$(this).css('transform', 'translate(200px) rotate(180deg)');
});