Prestige Theme: Center the newsletter popup and add grey-overlay in the background

Hi there, we’re currently using the Prestige theme and I would like to move our current newsletter pop-up to be centered and also be able to add a grey-overlay to the background when the pop-up is up until it is closed.

Can someone please help on how to implement this? I believe it’ll be through our .css?

Our website is: https://manukora.com/

Thanks!

Hi @guiveloso center-aligning the popup can be easily done via CSS. However, adding an overlay and showing it till the popup is closed requires technical coding to make changes to the layout for which you will have to hire a Shopify expert.

Thank you @g33kgirl ! Noted on the overlay. In this case, can you please guide me on how can I center-align our current newsletter pop-up?

@guiveloso , you can add this at the end of your CSS file (ThemesEdit codeAssetstheme.css :disappointed_face:

.NewsletterPopup {
   left: 50% !important;
   transform: translate(-50%, -50%) !important;
}