Actually that is not arrow it is cross but due to height and width it looks like arrow.
Hi Grindzewall,
You just need to go to the plugins\responsive-lightbox-lite\assets\nivo-lightbox\themes\default\default.css
at line 38
you’ll get
.nivo-lightbox-theme-default .nivo-lightbox-close {
display: block;
background: url(close.png) no-repeat 5px 5px;
width: 16px;
height: 16px;
text-indent: -9999px;
padding: 5px;
opacity: 0.5;
}
just change the
background: url(close.png) no-repeat 5px 5px;
to
background: url(close.png) no-repeat 0px 1px;
Hope this may solve your problem.