After researching numerous threads on how to apply a personalized design to a telerik menu on my website, I have reached out for assistance. Even though some may not be familiar with the specifics, I am in urgent need of help with my current coding.
In my web config file, the following settings are present:
<appSettings>
<add key="Telerik.Skin" value="Glow2"/>
<add key="Telerik.EnableEmbeddedSkins" value="false"/>
<add key="Telerik.EnableEmbeddedBaseStylesheet" value="false"/>
<add key="Telerik.ScriptManager.TelerikCdn" value="Disabled" />
<add key="Telerik.StyleSheetManager.TelerikCdn" value="Disabled" />
</appSettings>
In my site master document:
<link href="Skins/Glow2/Menu.Glow2.css" rel="stylesheet" type="text/css" />
For the menu section in my code, I utilize:
<li>
<asp:LoginView ID="SysAdminLV" runat="server">
<RoleGroups>
<asp:RoleGroup Roles="Masters">
<ContentTemplate>
<telerik:RadMenu ID="SysAMenu" runat="server" Skin="Glow2">
<Items>
<telerik:RadMenuItem runat="server" Text="Sys Admin" NavigateUrl="~/Default.aspx">
<Items>
<telerik:RadMenuItem runat="server" Text="Create User" NavigateUrl="~/Staff/Masters/New_User.aspx"></telerik:RadMenuItem>
<telerik:RadMenuItem runat="server" Text="Manage Users" NavigateUrl="~/Staff/Masters/Manage_Users.aspx"></telerik:RadMenuItem>
</Items>
</telerik:RadMenuItem>
</Items>
</telerik:RadMenu>
</ContentTemplate>
</asp:RoleGroup>
</RoleGroups>
</asp:LoginView>
</li>
The custom skin I've created is named Glow2 as it involved minimal modifications to the existing "Glow" skin. While there are no visible errors and the page loads properly, the styling from the Glow2 Skin does not seem to apply to my links. The appearance of the page upon loading is displayed below, where only the "home" and "Sysadmin" links appear in telerik styling, while the remaining links are coded using CSS at this moment.