How to get rid of the "arrow" on the menus

  • Thread starter Thread starter heat
  • Start date Start date
H

heat

Hello,

I started to play with asp.net 2.0, I love the new menu control. Right
now I'm trying to get rid of the arrow that shows up when you have a
sub-menu. How can I do this???

Thanks

Marlene
 
why? have your users complained about this? I assume the software you are
building is for your users and not for you. In that case you should probably
ask before attempting to change internal stuff like that.

--
Regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @ www.lulu.com/owc
Forth-coming VSTO.NET - Wrox/Wiley 2006
 
I want to be able to manipulate it, maybe change it ....
why??? It's difficult to do
Alvin Bruney - ASP.NET MVP said:
why? have your users complained about this? I assume the software you are
building is for your users and not for you. In that case you should
probably
ask before attempting to change internal stuff like that.

--
Regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @ www.lulu.com/owc
Forth-coming VSTO.NET - Wrox/Wiley 2006
-------------------------------------------------------



heat said:
Hello,

I started to play with asp.net 2.0, I love the new menu control. Right
now I'm trying to get rid of the arrow that shows up when you have a
sub-menu. How can I do this???

Thanks

Marlene
 
I don't have 2.0 handy but if I remember each control uses its own private
directory for resources. In this case the easiet way to proceed would likely
be to just replace the default image with whatever you want (assuming this
is an image) (if this option is not contralable, else you could liekly
adjust this in a skin file or in your code if you have just a single place).

--
Patrice

heat said:
I want to be able to manipulate it, maybe change it ....
why??? It's difficult to do
Alvin Bruney - ASP.NET MVP said:
why? have your users complained about this? I assume the software you are
building is for your users and not for you. In that case you should
probably
ask before attempting to change internal stuff like that.

--
Regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @ www.lulu.com/owc
Forth-coming VSTO.NET - Wrox/Wiley 2006
-------------------------------------------------------



heat said:
Hello,

I started to play with asp.net 2.0, I love the new menu control. Right
now I'm trying to get rid of the arrow that shows up when you have a
sub-menu. How can I do this???

Thanks

Marlene
 
If there's a sub-menu, the arrow has to be there.

What you can do, to get rid of the arrows,
is run all the links as primary links with no sub-menus.

i.e., run your sitemap nodes individually, closing each of them :

That's what I did at the ASP.NET FAQ :

<siteMapNode title="The ASP.NET FAQ" url="~/default.aspx" description="Home">
</siteMapNode>
<siteMapNode title="Basic ASP.NET Info" url="~/basic.aspx" description="Basic ASP.NET
Info">
</siteMapNode>

See it running without arrows at : http://asp.net.do/faq/




Juan T. Llibre
ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
==========================
 
See my reply...



Juan T. Llibre
ASP.NET MVP
ASP.NET FAQ : http://asp.net.do/faq/
==========================

heat said:
I want to be able to manipulate it, maybe change it ....
why??? It's difficult to do
Alvin Bruney - ASP.NET MVP said:
why? have your users complained about this? I assume the software you are
building is for your users and not for you. In that case you should probably
ask before attempting to change internal stuff like that.

--
Regards,
Alvin Bruney [MVP ASP.NET]

[Shameless Author plug]
The Microsoft Office Web Components Black Book with .NET
Now Available @ www.lulu.com/owc
Forth-coming VSTO.NET - Wrox/Wiley 2006
-------------------------------------------------------



heat said:
Hello,

I started to play with asp.net 2.0, I love the new menu control. Right
now I'm trying to get rid of the arrow that shows up when you have a
sub-menu. How can I do this???

Thanks

Marlene
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top