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

Reply To: Search bar alignment

#27957
Ernest MarcinkoErnest Marcinko
Keymaster

Hi,

I was looking at the site a moment ago, but the position was changing all the time, I guess you are working on it currently.

If the plugin is still placed as the first item of the “container” div element, then this will place it between the logo and the items:

.container {
    position: relative;
}

.container .asp_m_2 {
    position: absolute;
    width: 200px !important;
    left: 300px;
    top: -2px;;
}

..or giving it a bit less width, at the current position, and changing it to an inline-block, will move the logo to it’s original position:

.container .asp_m_2 {
    display: inline-block !important;
    width: 25% !important;
}