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

Reply To: CSS etc.

#22736
Ernest MarcinkoErnest Marcinko
Keymaster

Hi Nigel,

I think this is either a simple margin or a vertical alignment issue, however it is impossible to tell without actually looking at it directly. The best option in these cases is to check the surrounding container via the development tools (where the plugin is placed) and adjust it’s alignment accordingly. I suspect the original search had a specific class or a specific structure that applied to it.

You could try either this custom CSS:

.asp_m {
    display: inline-block !important;
    vertical-align: middle !important;
}

..or something like this:

.asp_m {
    margin-top: 12px !important;
}

Although I have no idea if these will work.