13 Answers, 1 is accepted
Hi Marc,
I am not aware of changes of the RadNavigation appearance and rendering between versions R1 2019 and R2 2019.
I performed a test with the official R1 and R2 2019 versions and was unable to match differences as shown in the attached video. Can you please check it and let me know if there is something wrong or unexpected?
For your convenience I have attached my test web site project. Do you experience the issue within it? If no, can you modify it so that it starts to replicate the issue and send it back for examination! Thank you!
Regards,
Rumen
Progress Telerik

Hi Rumen,
Misunderstanding here. I was pointing at the Navigationbar in the RadWizard component.
This post was done in the Wizard Thread :-)
Sorry for any misconvenience caused.
Marc
Please excuse me for missing the control name of the forum post!
There is only small appearance related fix in R2 2019 (version 2019.2.514) which concerns RadWizard and it is: Button triangle edge is slightly moved to the right.
You can check the release notes here.
This is only button positioning fix and we haven't changed any colors.
Here is my configuration
<
telerik:RadSkinManager
ID
=
"RadSkinManager1"
RenderMode
=
"Lightweight"
ShowChooser
=
"true"
runat
=
"server"
></
telerik:RadSkinManager
>
<
telerik:RadWizard
runat
=
"server"
ID
=
"RadWizard1"
>
<
WizardSteps
>
<
telerik:RadWizardStep
ID
=
"WizardStep1"
StepType
=
"Start"
>
Step 1
</
telerik:RadWizardStep
>
<
telerik:RadWizardStep
ID
=
"WizardStep2"
>
Step 2
</
telerik:RadWizardStep
>
<
telerik:RadWizardStep
ID
=
"WizardStep3"
>
Step 3
</
telerik:RadWizardStep
>
<
telerik:RadWizardStep
ID
=
"WizardStep4"
StepType
=
"Finish"
>
Finish step
</
telerik:RadWizardStep
>
<
telerik:RadWizardStep
ID
=
"WizardStep5"
StepType
=
"Complete"
>
Completed!
</
telerik:RadWizardStep
>
</
WizardSteps
>
</
telerik:RadWizard
>
Can you please test with the provided project in my earlier post and let me know if you are able to replicate the issue?
Regards,
Rumen
Progress Telerik

Yes, but my question is how one can change the NavigationBar color to a custom color?
I cannot find how to change the CSS to do this.
Marc
Hi Marc,
Thank you for the clarification!
There are two approaches to customize the colors of the Telerik components:
- To use the Theme Builder which will allow you to change the appearance, save and import the CSS files to style the controls
- Manually using the Chrome DevTools (or the HTML inspector of another browser) and overriding the built-in CSS classes as explained at
For your convenience I recorded a very quick and basic video tutorial of how to get started with the customization and attached it to my reply.
Here is the code from the sample:<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style> .RadWizard_Office2010Silver .rwzSelected .rwzLink { border-color: #c38e00; color: #ce0d0d; background-color: #25dd5c; background-image: linear-gradient(#38362e,#ada07c,#ff7cfc) !important; } .RadWizard_Office2010Silver .rwzLink:before { border-color: #bfc3ca; background-image: linear-gradient(135deg,#157ae0,#012163) !important; } .RadWizard_Office2010Silver .rwzLink { border-color: #0de4ac; color: #333; background-color: #1b55c8; background-image: linear-gradient(#235e98,#3365ca) !important; } </style> </head> <body> <form id="form1" runat="server"> <asp:ScriptManager runat="server" /> <telerik:RadWizard runat="server" ID="RadWizard1"> <WizardSteps> <telerik:RadWizardStep ID="WizardStep1" StepType="Start"> Step 1 </telerik:RadWizardStep> <telerik:RadWizardStep ID="WizardStep2"> Step 2 </telerik:RadWizardStep> <telerik:RadWizardStep ID="WizardStep3"> Step 3 </telerik:RadWizardStep> <telerik:RadWizardStep ID="WizardStep4" StepType="Finish"> Finish step </telerik:RadWizardStep> <telerik:RadWizardStep ID="WizardStep5" StepType="Complete"> Completed! </telerik:RadWizardStep> </WizardSteps> </telerik:RadWizard> </form> </body> </html>
I hope this helps! Please keep me in touch.
Regards,
Rumen
Progress Telerik

Now my exact problem is shown in attached screenshot. version 2019.2 is used here on my side. The markup contains a rwzCallout class, which is not styled from the Theme Style Builder classes. I wonder what creates the difference here....
Marc
Thank you for the screenshot!
I examined the source code and was unable to find any regressions or changes in the rendering and stylesheet of the Wizard control between the R1 and R2 2019 releases.
I created a custom skin in the Theme Builder for the wizard and applied it to it without issues. It works perfectly well for the old and latest versions.
Can you please help me to reproduce the issue?
Regards,
Rumen
Progress Telerik

Hi Rumen,
I was able to reproduce...where can send my testproject?
Marc
Thank you!
Regards,
Rumen
Progress Telerik

Thank you for opening a support ticket and provided a sample project! I appreciate it much!
The solution I'd like to propose is to set the RenderMode property to Lightweight since the Theme Builder produces skins for the lightweight rendering only.
This can be done inline or globally for the whole app in the web.config file:
<
appSettings
>
<
add
key
=
"Telerik.Web.UI.RenderMode"
value
=
"lightweight"
/>
</
appSettings
>
Regards,
Rumen
Progress Telerik

Hi Rumen,
Thank you this works.
I could have thought of that earlier :-)
Marc
Keep up the good work!
Regards,
Rumen
Progress Telerik