On Fri, Jun 07, 2002 at 03:35:39PM -0700, Tom Brown; RVVS30 wrote:
> I tried to the src/html/index.html to src/index.html and also capied the
> /lib/page wrapper to lib/pagetop, edited pagetop to remove the tabsbox
> tabs, edited the index.html to use the pagetop wrapper, etc. It kind of
> works but I am unable to get the top HTML menu tab to look black.
If you look in lib/config, you'll find definitions of libs.html, libs.ps
and libs.splash. Add your own definition of libs.index, for example, and
then in your source template, src/index.html, do this:
[% library = libs.index
section = 'index' ;
WRAPPER page
%]
...content...
[% END %]
By setting library to the appropriate libs.* structure, you trigger the
lib/menu template to generate the top tabs bar appropriately. I think it
used 'library.title' to determine which tab to activate.
I haven't tried this out, but that should hopefully give you a clue in
the right direction. Shout if that doesn't do the trick or doesn't
point you in the right place...
Cheers
A