I'm customizing a template for my site, and I'm trying to absolutely
position the search tool:
in jspwiki.css, I've got:
.searchbox {
position: absolute;
top: 205px;
}
The input field gets positioned correctly, but the searchboxMenu div
is positioned quite a bit lower on the screen, at 229px; If I move
the .searchbox top position, then the searchboxMenu position changes
also. The .searchboxMenu position always seems to be .searchbox.top +
24px; I'm sure that the left/right would be messed up also if I set a
value in .searchbox.
I'm guessing that this is caused by jspwiki-common.js locatemenu(),
which I'm guessing always assumes that the base isn't absolutely or
relatively positioned.
Am I on the right track? Anyone run into this already and fix it?
-Trevor