Convert plus"close text" placement

Hi
Can I place the “close text” in the modal right below the box or in the bottom of the box?

Hello @nikolaus.kemetner,

Thanks for asking. :slight_smile:

By default there is no option to change the position of close button. However, you can use following CSS under X > Theme Options > CSS to change the position.

.cp-overlay-close {
    right: 15px !important;
    top: auto !important;
    left: auto !important;
    bottom: 10px !important;
}

Let us know how it goes.

Thanks.

ok thx,

is there a possibility to to put always in the center? right below the box? in order to have it on the same place on all devices?

Hello @nikolaus.kemetner,

Please update previous code with following:

.cp-overlay-close {
    right: auto !important;
    top: auto !important;
    left: 50% !important;
    bottom: 10px !important;
}

Please note that these are all custom CSS and it will be difficult for us to provide support if something unexpected happens as that will fall outside the scope of support we can offer. Minor styling changes are always good, but major changes like we are doing right now can create issues in future.

Thanks.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.