Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Search bar alignment › Reply To: Search bar alignment
June 19, 2020 at 9:44 am
#27957
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;
}