Open _header.php
Find on line 104:
<div id="categoryBar" class="categoryBar" style="display:<?php echo (defined("NO_JS_DISPLAY_CATS") ? "block" : "none"); ?>;">
Replace with:
<div id="categoryBar" class="categoryBar" style="display:<?php echo (defined("NO_JS_DISPLAY_CATS") ? "none" : "block")...