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
January 15, 2020 at 10:15 am
#25289
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;
}