Best way to hide ionTabs?

What would be the best way to hide ionTabs, including the bar?

I’ve tried exercising the documentation, but can’t get my head around it.

When using CSS to hide the bar, and move the content, the positions of the nav screws up when viewed on a device.

All thoughts much appreciated.

Many thanks,
Alex

I’ve just pulled the classic; figuring it out as soon as you ask for help.

Add: $ionicTabsDelegate.showBar(false); to the page’s controller.

i.e.

.controller(‘lorem’, function($…, $ionicTabsDelegate, ipsum) {
$ionicTabsDelegate.showBar(false);

})

Thanks everyone!