Centering the CTA button on a content slider module

I’m trying to use a Content Slider module for the first time and I can center the text but CTA button doesn’t seem to have an option to center the button under the text. Am I missing something? Is there a way to center the button link?

Hi,

I’m working on a similar issue, right now I can center all CTA buttons within the slider by using the custom css:

.fl-slide-cta-button > .fl-button-wrap {
    text-align: center !important;
}

For a fairly simple case, where the slides are pre-planned and there is no dynamic building, you could just address each cta using something like this:

.fl-slide-0  .fl-button-wrap {
    text-align: center !important;
}

Still working on it, but perhaps someone can give a better answer.