For those that may need this for APEX Mobile NavBar..
here is how I was able to get 6 menu items across thanks to Gary on Experts Exchange!
If you have another way.. please post it here
This is in the source area of a "PL/SQL Dynamic Region"
htp.p('<style>
.ui-grid-a li {
clear: none !important;
width: 16.6666% !important;
}
</style>');
htp.p('<div data-role="navbar">
<ul>
<li><a href="f?p='||:APP_ID||':MENU:'||:SESSION||'::NO:MENU:::">M</a></li>
<li><a href="f?p='||:APP_ID||':SEARCH:'||:SESSION||'::NO:SEARCH:::">S</a></li>
<li><a href="f?p='||:APP_ID||':AREA:'||:SESSION||'::NO:AREA:::">A</a></li>
<li><a href="f?p='||:APP_ID||':CATEGORY:'||:SESSION||'::NO:CATEGORY:::">C</a></li>
<li><a href="f?p='||:APP_ID||':OUTCOME:'||:SESSION||'::NO:9:::">O</a></li>
<li><a href="f?p='||:APP_ID||:G_ADD_OBJECT||'">+</a>
</li>
</ul>
</div><!-- /navbar -->');
Thanks, Bill