-
Search Header
I can not get the Search Header to work (sideboxes/search_header.php in Layout Boxes Controller). The box shows up, but you can not click into it. You can access it by tabbing through the fields, but not by clicking on it. It will even search when you tab into it. However, I can not tell every visitor to use tab to get to the search....
I know that this is a failure in picaflor-azul's "Winchester Black" template, but I am not getting any help in that support thread. To verify that the issue is not related to any of my plug-ins, I created a fresh install of Ver 1.5.4 (that is what I am using on my sire currently), and only added the Winchester Black Template to the fresh install (no other plug-ins). The box works fine in the Classic Template, but is not accessible in the Winchester Black Template.
I added the CSS lines as in Post 17 of the support thread. That made the box appear, but did not make it functional.
Hopefully someone can help with this.
Test site is http://www.fantasycostume.com/wbtest/
-
Re: Search Header
I can tell you what the problem is, but I can't tell you what you need to do to fix it.
What is happening is that you have *two* text in boxes (one being hidden) in the same location. Only the 'bottom' one being 'clickable', but it is impossible to click on it because the the 'click' is on the topmost (visable) box.
I discovered this via the Firefox dev tools (inspect), then 'live editing' the code to remove the type='hidden' element, and then it behaved as expected.
Sorry I can't be of any more help than that.
Cheers
RodG
-
Re: Search Header
Thanks. Can you tell which files are generating these boxes? Maybe if I make the front box 1px wide then the bottom one will work.
-
Re: Search Header
Without being too destructive, you can add the following to your CSS file:
#menu {
position: relative;
left: -20px;
width: 80%;
top: 70px;
}
That worked for me in dev tools.