Pretty Good
-
One of my customers needed a popup, and it had to be done ASAP. Hustle did the job pretty well with no need for custom CSS, more options than I expected.
I would have given it a 5 star rating, except that I couldn’t configure the popup to not appear on phone devices (at customer’s request.)
I added the following CSS to suppress the popup on mobile (used shotgun approach).
@media (max-width:767px) {
.wph-modal.wph-modal–simple ,
.wph-modal–content,
.wph-modal–image_right {
hidden:true!important;
max-height:0px!important;
max-width:0px!important;
overflow:hidden;
}.wph-modal,
.wph-modal–close ,
.wph-modal–close a,
.i-close {
hidden:true!important;
max-height:0px!important;
max-width:0px!important;
overflow:hidden;
}.wph-modal.wph-modal–simple,
.wph-modal–content,
.wph-modal–wrap {
hidden:true!important;
max-height:0px!important;
max-width:0px!important;
overflow:hidden;
}
}
The topic ‘Pretty Good’ is closed to new replies.
