Hi,
I’ve solved adding some style to style.css. I’ve copied the id name that Anything Popup generates for the container (eg “Anything_Popup_BoxContainer2”) and added some style for it.
My example:
@media (max-width: 600px) {
#Anything_Popup_BoxContainer2 {
width: 90% !important;
height:auto !important;
position: absolute !important;
margin-right: auto !important;
margin-left: auto!important;
right: 0px!important;
left: 0px!important;
top: 40%;
margin-top:20%;
}
}
It’s important to add ‘!important’ 😉
I don’t know if it’s the best solution, but it worked for me!