Hello,
So I edited the search function in the theme files as per this thread:
https://kriesi.at/support/topic/search-not-working-in-ie8/#post-328178
We wanted a static search box as part of our left side header below the logo and above the navigation, but when I put in the code the search box went to the right place and the execute button went stray:
http://f84.c42.myftpupload.com/
Thoughts as to a fix?
Hi XTGlobal!
I can see the search field on your site, under the logo, and a search button above the logo. I’m guessing you want it to look like the search bar in the main content area, like here: http://f84.c42.myftpupload.com/?s=search?
Best regards,
Rikard
Yes, we just want the execute button on the search field in a singular bar, under the logo.
Hey!
Please try the following code in Quick CSS:
#top #s {
width: 80% !important;
}
#top #searchsubmit, .ajax_load {
position: relative !important;
}
Regards,
Rikard
Thanks!
That brought the search button down, but now it’s just awkwardly perched on the top left of the search bar.
I added:
float: right;
That got it in line with the search bar, but there’s a sizable gap between the search bar and the button. Any way to close that?
Hey!
Please add following code to Quick CSS as well
#top #s {
margin-left: 20px;
}
Cheers!
Yigit
Ah ha, that did it. Thanks so much!