-- url of the page with the problem -- :
accademiainfinita.it/meditazioni-guidate
Hello,
I just noticed that for some screen sizes (i-pad to phone) this css
@media only screen and (max-width: 960px)
div.modal.fade.in {
margin-left: -400px !important;
}
is causing issues with my modal login form, causing it to open on the left of the page instead that centered, because the rule has !important applied it overwrites the login modal style which would be
style="display: block; margin-left: -164px;"
I know that I can change hikashop css via my custom css file, but I don't want to risk breaking things in the shop, can you tell me what that css rule applies to (term and conditions popup?) and what would happen if I change it to this?
@media only screen and (max-width: 960px)
div.modal.fade.in {
margin-left: -164px !important;
}
thank you