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

Reply To: Ajax Search Menu Bar Styling Problem

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Ajax Search Menu Bar Styling Problem Reply To: Ajax Search Menu Bar Styling Problem

#25289
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

Well, it is almost impossible to tell without actually seeing the issue, but I am guessing, that there is either a top margin on the parent container of those menu elements, or they are displayed as inline/inline-block with a different vertical alignment.

Try either this custom CSS:

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

…or maybe this (adjust the margin):

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