View Full Version : Trying to remove menu_open.gif from breadcrumb
bhxtyrant
08-05-2006, 12:33 AM
Hey guys,
I have recently begun building a new skin for my site and i ran into a little issue.I would like to remove the little arrow image that appears next to the drop down menu's for "search" and "quicklinks" in the breadcrumb.So far i have been unable to track down where this little bugger is hideing so i was hopeing one of the expert skin builders out there can point me in the right direction.I tryed searching but came up empty.Any help would be appreciated :)
http://img228.imageshack.us/img228/2606/untitled1tr1.th.jpg (http://img228.imageshack.us/my.php?image=untitled1tr1.jpg)
TPOCJames
08-05-2006, 02:25 AM
This is going to sound really dumb, but, have you tried searching for it by the name of the image? If you can't find it in styles, try searching in phrases.
Freesteyelz
08-05-2006, 04:00 AM
In your navbar template find:
<td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <script type="text/javascript"> vbmenu_register("navbar_search"); </script></td>
Replace it with:
<td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <script type="text/javascript"> vbmenu_register("navbar_search", true); </script></td>
Then find:
<td id="usercptools" class="vbmenu_control"><a href="$show[nojs_link]#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td>
And replace it with:
<td id="usercptools" class="vbmenu_control"><a href="$show[nojs_link]#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools", true); </script></td>
The image will not show up now. However, the call to the .gif file is in a JS script in the clientscript directory.
bhxtyrant
08-05-2006, 08:03 AM
Thanks alot freestyles,that did the trick.Yeah i figured it had to be outside of the templates because i searched quite a bit trying to find it without luck.Well thanks again :D
Freesteyelz
08-05-2006, 12:42 PM
Glad it worked out. :)
psypix
08-17-2006, 01:38 PM
good job ;)
thanks for the code
cyberphr
09-30-2006, 09:58 AM
Thanks, needed this too.
ChavMagnet
10-01-2006, 06:57 PM
Hi i have added mods to my nav can you help me remove it from this
<!-- Image Host Popup -->
<div class="vbmenu_popup" id="vbimghost_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td class="thead">$vbphrase[vbimghost_title]</td></tr>
<tr><td class="vbmenu_option"><a href="$vboptions[bburl]/vbimghost.php?do=myimages">Your Images</a></td></tr>
<tr><td class="vbmenu_option"><a href="$vboptions[bburl]/vbimghost.php?do=upload">Upload A Image</a></td></tr>
<tr><td class="vbmenu_option"><a href="$vboptions[bburl]/vbimghost.php?do=userlist">View Users Images</a></td></tr>
</table>
</div>
<!-- / Image Host Popup -->
Thanks
EidolonAH
09-26-2009, 07:08 PM
In your navbar template find:
<td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <script type="text/javascript"> vbmenu_register("navbar_search"); </script></td>
Replace it with:
<td id="navbar_search" class="vbmenu_control"><a href="search.php$session[sessionurl_q]" accesskey="4" rel="nofollow">$vbphrase[search]</a> <script type="text/javascript"> vbmenu_register("navbar_search", true); </script></td>
Then find:
<td id="usercptools" class="vbmenu_control"><a href="$show[nojs_link]#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools"); </script></td>
And replace it with:
<td id="usercptools" class="vbmenu_control"><a href="$show[nojs_link]#usercptools">$vbphrase[quick_links]</a> <script type="text/javascript"> vbmenu_register("usercptools", true); </script></td>
The image will not show up now. However, the call to the .gif file is in a JS script in the clientscript directory.
Perfect, just what I was looking for, thanks for this.:up:
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.