My header tag:
1.<header>2. <link type="text/css" rel="stylesheet" href="../Css/bootstrap.min.css" />3. <link type="text/css" rel="stylesheet" href="../Css/font-awesome.min.css" />4. <link type="text/css" rel="stylesheet" href="../Css/StyleSheet.css" />5. <link type="text/css" rel="stylesheet" href="<%=Configuration.GetSetting("BrandingUrl") %>" />6.</header>When I enable CDN in web.config, Telerik css files are added between lines 5 and 6, However I need line 5 (My branding file containing some Telerik overrides) to be the last line.
I tried using the RadStyleSheetManager which provides ordering capabilities but since lines 2 and 3 are actually fully qualified URLs, I could not find a way to combine URLs and static files using the control.
How would I be able to achieve this short of adding each [RadControl].css file I use in my Webform application.