Dear moderators & participants,
thank you in advance for helping me with the following issue: I’m using the simple slider on the start page with parallax-effect, background-image and centered headline with button below.
On mobile screen the headline and button are no longer in the center. Seems as if there is a margin on the right side, whenever the screen falls under about 760 px.
Thanks
FW
Hey KMC22,
Thank you for the inquiry.
The issue you are experiencing seems to be related to a CSS modification that affects the container within the slider. Specifically, the following CSS code is causing the problem:
div.container.caption_container {
margin: 0px !important;
}
This modification is conflicting with the desired layout. To resolve the issue, you can either remove the above CSS code entirely or add the following CSS code below the previous code to override it:
.av-slideshow-caption div.container.caption_container {
margin: 0 auto !important;
}
Please make sure to clear any cache and refresh the page to see the changes take effect. If you require further assistance or have any additional questions, feel free to let us know.
Best regards,
Ismael
Thank you very much, Ismael.