Customize Content Modal Area popup

Hi Themeco

What I’m trying to achieve is to customize the content area modal to go fullscreen.

How would I do that?

When I try using the customize option In the inspector, I somehow just end up customizing the button instead.

Hi @wmmajaliwa,

Thanks for reaching out.

I think it’s because the styling is generated based on ID. Please add this CSS to your global custom CSS to override it.

.x-modal .x-modal-content-inner {
    padding: 0 !important;
    display: block !important;
}
.x-modal .x-modal-content {
    max-width: 100% !important;
    position: fixed !important;
    bottom: 0 !important;
    top: 0 !important;
}

Thanks!

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