How can I adjust the padding/margin between the video and the text? I would like to decrease the negative space here.
1 Like
- Issue description:
I can get the title and text content to center, but the video will not. It stays left-aligned no matter what setting I try.
2 Likes
Happy to see you’ve decided to join our ranks! Welcome, @user13792
The codes below should work for you!
1. Align video to the center:
[class*="BuilderBlock__Content-sc"] > * {
margin-left: auto;
margin-right: auto;
}
2. Adjust padding between media and title:
.eapp-slider-media-inner {
padding-top: 50%;
}
Try it out and let me know if you like the result