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

Reply To: Ajax pro with elementor compatibility

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Ajax pro with elementor compatibility Reply To: Ajax pro with elementor compatibility

#21022
Ernest MarcinkoErnest Marcinko
Keymaster

The alignment issue on the full screen is because of the difference in margin of the container element and that it’s aligned to the middle, and not to the bottom. You can very easily fix it by using this custom CSS:

@media only screen and (min-width: 768px) {
    .asp_m_1 {
        margin-top: 12px !important;
    }
}

That should fix it for the desktop version. Let me know about the mobile version as well.