This is a migrated thread and some comments may be shown as answers.

Custom Theme doesn't apply to RadMenu and Page

3 Answers 63 Views
Theme Builder
This is a migrated thread and some comments may be shown as answers.
Jonathan
Top achievements
Rank 1
Veteran
Jonathan asked on 29 Jun 2018, 12:27 PM

Hi..

I added my custom theme. But it does not skin the Radmenu or any of the controls on a page. Page contains master page.

Any ideas what is wrong?  I have the following in the Master

    <link href="~/Skins/Flom/Window.Flom.css" rel="stylesheet" /> 

 

See attachment

thx again!

3 Answers, 1 is accepted

Sort by
0
Jonathan
Top achievements
Rank 1
Veteran
answered on 29 Jun 2018, 12:28 PM
     <telerik:RadMenu rendermode="Lightweight" Skin="Flom" EnableEmbeddedSkins="false"  runat="Server" ID="RadMenu" EnableShadows="true" EnableRoundedCorners="true"  OnClientItemClicked="openWinNavigateUrl"
                Style="float: none; position: absolute; top: 50px; z-index: 2000" Width="100%" CssClass="RadMenu">
                <Items>

0
Accepted
Rumen
Telerik team
answered on 29 Jun 2018, 01:19 PM
Hi Jonathan,

The src in the link starts by a tilde ~ symbol which is not a valid symbol in HTML and is not resolved by the browser. You need to ensure that the path is valid for example


<link href="./Skins/Flom/Window.Flom.css" rel="stylesheet" /> 

or 

<link href="Skins/Flom/Window.Flom.css" rel="stylesheet" /> 

Best regards,
Rumen
Progress Telerik
Try our brand new, jQuery-free Angular components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
0
Jonathan
Top achievements
Rank 1
Veteran
answered on 29 Jun 2018, 01:40 PM
thx again!
Tags
Theme Builder
Asked by
Jonathan
Top achievements
Rank 1
Veteran
Answers by
Jonathan
Top achievements
Rank 1
Veteran
Rumen
Telerik team
Share this question
or