How to fix the vertical navigation bar

How to fix the vertical navigation bar

If you have HelloPress, HelloUno,  HelloMini, or HelloTimes, and the left vertical nav is not displaying categories, here is the solution:
Go to: \skin\frontend\default\hellopress\js\custom.js
or \hellomini
or: \hellouno
or: \hellotimes
There you should add this:

// FIx: Vertical Nav
function toggleMenu(el, over){
if (over) {
Element.addClassName(el, 'over');
}
else {
Element.removeClassName(el, 'over');
}
}

If you have HelloTimes or HelloMini, make sure you have this line in \app\design\frontend\default\(hellotimes or hellomini)\layout\page.xml:

<action method=”addItem”><type>skin_js</type><name>js/custom.js</name></action>

This is post is in How To

Leave a Reply