This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Plugin Questions

#23247
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

1. That looks like some sort of background bleed-though, as there is no outline of any sort on those elements. That is usually very hard to resolve, as it is sort of a browser clipping bug. Maybe try this custom CSS:

.probox {
    background: black !important;
}

.proinput {
    background: white !important;
    padding: 0 12px !important;
}

2. There is no option for that, but might be possible via custom CSS as well. Try this (use the desired values):

@media only screen and (min-width: 1024px) {
    .promagnifier,
    .innericon {
        min-width: 48px !important;
        height: 48px !important;
    }
    .probox *,
    .probox {
        height: 48px !important;
    }
}