PDA

View Full Version : Menu_open.gif


Ohiosweetheart
08-18-2007, 12:40 PM
Someone helped me get rid of the menu_open.gif on the navbar, now I'm wanting to do the same on the forum toobars, i.e. Forum Tools, Search this Forum, Thread tools, search this thread, Rate this thread, etc.

I tried looking in the navbar template but didn't see these there anywhere.

Help? :)

Yours Truly
08-18-2007, 01:16 PM
try Style Manager --> Search in templates --> menu_open.gif

Would that work?

KingPuyol
08-18-2007, 05:29 PM
I guess it has to do with some of the javascript files included from the clientscript directory.

Opserty
08-18-2007, 09:51 PM
You could just overwrite menu_open.gif with clear.gif

Saves you having to edit any templates or code.

Dismounted
08-19-2007, 05:58 AM
If you wanted to edit the code, you'll have to add a false attribute on vb_menu_register().

MaestroX
08-20-2007, 08:29 AM
Its actually quite easy.

In your navbar template, find

vbmenu_register("navbar_search");

and replace with

vbmenu_register("navbar_search", true);

Find

vbmenu_register("usercptools");

and replace with

vbmenu_register("usercptools", true);

The ", true" controls the display of the arrow image. Where this code is present the arrow will not appear.