I want to replace standard pages menubar with my own - in particular the one that is generated by NAVT plugin - because it is so flexible.
My first idea to do it was to edit the code inside of:
Style and Edit Header Area -> Configure Header area
like this:
Code:
%image <?php if (function_exists('navt_getlist')) navt_getlist ('menu1', true); ?>
My second idea was to create custom widget area like this:
Code:
%image <?php bfa_widget_area('name=Horizontal menu&cells=1'); ?>
Second approach generates lots of extra "table" code + standard widget formatting around that I envision would be difficult to style correctly.
So my question is - what would be the cleanest way to emit custom <ul>...</ul> code right after the %image without bunch of formatting around?
Gleb