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

Reply To: Positioning Search Box on Homepage

Home Forums Product Support Forums Ajax Search Pro for WordPress Support Positioning Search Box on Homepage Reply To: Positioning Search Box on Homepage

#9629
Ernest MarcinkoErnest Marcinko
Keymaster

Hi Jeremy,

Looking at your site, I would probably position the wrapper element to a fixed position first with this custom CSS:

[html]div.et_search_outer {
overflow: hidden;
position: fixed;
width: 400px;
right: 7px;
top: 100px;
}[/html]

Then change the width of the search to fill this element:

[html].asp_main_container {
width: 100% !important;
}[/html]

This should be a good starting point 🙂