hi
I have an Essential Grid and am wanting to position the navigation arrows.
I have been able to use CSS to style the arrows, removing borders and backgrounds, but the arrows themselves seem to want to sit at the 50% point of the entire grid item. I’d like to try and get them to sit at the 50% point of just the media (image), so excluding the text below it. I know there would be a way if I add the arrows separately using the shortcode available [ess_grid_nav id="right" alias="food tours"]
& [ess_grid_nav id="left" alias="food tours"]
, but this seems a cumbersome way to do it
Here is where the arrows currently sit
As you can see, the arrows sit towards the bottom of the image, though are actually halfway of the entire content
Is this possible at all to have the arrows vertically aligned halfway up the image?
I found the following code at one of the forums and adjusted the selector so it is targeting my arrows
Original
.esg-filters.esg-singlefilters.esg-navbutton-solo-left,
.esg-filters.esg-singlefilters.esg-navbutton-solo-right {
top: auto !important;
bottom: 25% !important;
}
For my buttons
.minimal-light .esg-navigationbutton.esg-left,
.minimal-light .esg-navigationbutton.esg-right {
background-color: none;
border: none;
border-color: none !important;
top: auto !important;
bottom: 25% !important;
}
The colour and border items work fine, but unfortunately, regardless what I do with the either the bottom or top figures, the arrows do not move.
Any suggestions on how to alter the vertical alignment?
Regards