here is what I ended up with to add icons and/or text to the empty space beside the hamburger button. It is dependent on jquery and jquery.resize.js
Marty
functionpageLoad() { $ = $telerik.$; functionupdateMenu() { $(".navCTitle").remove(); if($(".rnvRootGroup ").children().length == 0) { if($(".navCTitle").length == 0) { varstr = ''; str += '<div class="navCTitle">'; str += '<a href="/"><span class="fa fa-home fa-2x"></span></a>'; str += '<a href="/contact"><span class="fa fa-envelope-o fa-2x"></span></a>'; str += '</div>'; $(".rnvRootGroupWrapper").append(str); } } } $(".rnvRootGroupWrapper").resize(function(e) { setTimeout(updateMenu, 100); }); if(typeofcontentPageLoad == 'function') contentPageLoad();};