Dear Sirs I have a development site at http://www.peter-test2.co.uk I am trying to align the “Order Process” Caption so that it is central against the image along with any caption text. I have tried this code but does not work
div .slideshow_caption h2 {
align: center!important;
}
Can you please help
Hi condonp,
Can you try adding this CSS code in Enfold > General Styling > Quick CSS:
.home #av-layout-grid-2 .av-slideshow-caption {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
align-items: center;
justify-content: center;
}
Best regards,
Nikko