Hello experts,
I am trying to create a super simple horizontal menu, something like: Home | About | Contact
I don't need sub menus or all the advanced stuff of the RadMenu. However, I need to be able to style it exactly like the website, hence can't use any of the Telerik skins.
I tried the tutorial to create a custom skin:
http://www.telerik.com/help/aspnet-ajax/menu-appearance-creating-custom-skins.html
but I can't manage to skin it as I want. There are zillions of css classes, some are not even exposed and built-in within the Telerik control.
The resulting html of the RadMenu control is some super simple <ul><il>, exactly what I want. But it is rendered useless because I can't control its styling.
Can the RadMenu control be configured so all its embedded css classes are removed?
May be is there another control a better choice to do such a simple menu?
thank you for your help.
I am trying to create a super simple horizontal menu, something like: Home | About | Contact
I don't need sub menus or all the advanced stuff of the RadMenu. However, I need to be able to style it exactly like the website, hence can't use any of the Telerik skins.
<telerik:RadMenu ID="RadMenu1" runat="server" Flow="Horizontal" EnableEmbeddedSkins="False" Skin=""> <Items> <telerik:RadMenuItem Text="Home" ></telerik:RadMenuItem> <telerik:RadMenuItem runat="server" Text="|" IsSeparator="True" /> <telerik:RadMenuItem Text="About" ></telerik:RadMenuItem> <telerik:RadMenuItem runat="server" Text="|" IsSeparator="True" /> <telerik:RadMenuItem Text="Contact" ></telerik:RadMenuItem> </Items></telerik:RadMenu>I tried the tutorial to create a custom skin:
http://www.telerik.com/help/aspnet-ajax/menu-appearance-creating-custom-skins.html
but I can't manage to skin it as I want. There are zillions of css classes, some are not even exposed and built-in within the Telerik control.
The resulting html of the RadMenu control is some super simple <ul><il>, exactly what I want. But it is rendered useless because I can't control its styling.
Can the RadMenu control be configured so all its embedded css classes are removed?
May be is there another control a better choice to do such a simple menu?
thank you for your help.