WebSite X5Help Center

 
Wayne G.
Wayne G.
User

Search results hidden behind header sticky on results page  en

Author: Wayne G.
Visited 995, Followers 1, Shared 0  

On our test website if you type something into the search bar the following search result on the following page is hidden behind the sticky header. 
http://elthamseascouts.org.au/2020test2/index.html

we have tried all the different settings like turning header back on in template settings etc... 
There needs to be a margin at the top of the search results page. 
Screen shot included

Posted on the
11 ANSWERS - 2 USEFUL - 1 CORRECT
John S.
John S.
User

Hello Wayne

You cannot edit the search page BUT you can edit the settings for the search page.

In settings for the page

You make some styling in the expert tab. Before Closing the head-tag you insert :

<style>
#imStickyBarGraphics {
visibility: hidden;
overflow: hidden;
}
#imStickyBar {
visibility: hidden;
overflow: hidden;
}
</style>

This will hide the sticky header on the search page.

Read more
Posted on the from John S.
Wayne G.
Wayne G.
User
Author

yes this works - not perfect but an acceptable workaround till it is fixed properly - would still love to have the sticky showing. 
Thank you so much John!!!

Read more
Posted on the from Wayne G.
Wayne G.
Wayne G.
User
Author

the reason I cannot close this or mark it as fixed is because the search function stops working on the search page. Also the top result is not clickable on the top part of the result. Only the bottom link. 
Almost so perfect. LOL


Read more
Posted on the from Wayne G.
Paul M.
Paul M.
Moderator

Hello Wayne,

I've marked your posts for the specific attention of the Incomedia support team.

You should receive a reply soon (usually within 24-72 hours).

Kind regards,

Paul

Search the WebSite X5 Help Center

Read more
Posted on the from Paul M.
John S.
John S.
User

Hello Wayne

Could you then try this :

<style>
#imStickyBarGraphics {
display: none;
overflow: hidden;
}
#imStickyBar {
display: none;
overflow: hidden;
}
</style>

Read more
Posted on the from John S.
John S.
John S.
User

Forget it - I think is the container for the sticky bar we have to get rid of.

Hope to find a better solution.

Read more
Posted on the from John S.
John S.
John S.
User

Hello Wayne

I had some trouble removing the container - instead I brought the search page in front of the container so the search field is editable and the top results is also clickable. I hope it can be used.

Try this :

<style>
#imStickyBarGraphics {
display: none;
overflow: hidden;
}
#imStickyBar {
display: none;
overflow: hidden;
}
#imSearchPage {
z-index : 15000;
}
</style>

Read more
Posted on the from John S.
Wayne G.
Wayne G.
User
Author

wow, that is some wizard skills you have there. Yes works perfectly  - except loose my sticky but a small price to pay for having a functioning search bar for Sunday's launch of the new scouting website. Thank you so much, John!!! 

Read more
Posted on the from Wayne G.
John S.
John S.
User

I maybe could make it another way.

I will try something else - stay tuned

Read more
Posted on the from John S.
John S.
John S.
User

It seem that you don't use a header and then the search page will go all the way up to the top. And then the sticky bar covers the top of the search page. I solved this by making the content of the sticky bar not be shown and then put the search page on top in the layers.

But you want the sticky bar to be shown, and then we have to lower the search page. I think I have found a way.

You can experiment with the padding to fit the sticky by changing the 150 to the size that suits you.

Hope this is better.

Please try this :

<style>
#imSearchPage {
padding-top: 150px;
}
</style> 

Read more
Posted on the from John S.
Wayne G.
Wayne G.
User
Author

that is perfect!!! problem solved - thank you so much. I really appreciate it!
Kind Regards
Wayne

Read more
Posted on the from Wayne G.