Navigtation In IE messed up

ravenfaust

New Member
My navigation seems to be messed up in IE, works fine in FF
im wondering how to fix this.. heres a screen shot
28h3d48.jpg


I just want it to all be even.

Thanks
 

Hoxxy

New Member
Admiincp>>styles and templates>>Style Manager>>your style

PASTE IN ADDITIONAL CSS:
HTML:
.vbmenu_control img {
  display:none;
}

What is the style? you may have to change the
HTML:
vbmenu_control
class to what ever your navbar class is.
 

Hoxxy

New Member
look in navbar or maybe header template and look for the links
they will look something like this:
Code:
[color=Red][b]<td class="vbmenu_control">[/b][/color]<a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>

by the looks of your screenshot they will be in the header template,
look for the highlighted bit and then change the code I gave you in previous post to what it says

what is the style you are using?
 

ravenfaust

New Member
fusion is the style,
Code:
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
is what i found..

so it should be
Code:
.vbmenu_control img {
  display:none;
}

? Sorry if im being a bother. Thank you for your help, i really appreciate it.

i tried that code and it did nothing :\
 

Hoxxy

New Member
ok try this....
Find:
PHP:
<script type="text/javascript"> vbmenu_register("navbar_search"); </script>

replace with:
PHP:
<script type="text/javascript"> vbmenu_register("navbar_search", true); </script>

as to being a bother....read my sig :D
 
Top