Victor A (Developer Express):
Hi NJ,
The "Logotype" skin you asked about is one of internal demo-specific skins. All such skins
are located within an individual ~/App_Themes/{Theme Name}/Demo.skin file for each theme
supported by the demos site. Additionally I'd like to mention that the "Logotype" skin is applicable
to hyperlinks only, and it only describes the size of a hyperlink (logo banner).
--
Victor
Thanks Victor. I also found in the Demo.master.vb file this chunk of code:
' Logotype
If DemoName <> "ASPxperience" Then
Logotype.ImageUrl = "~/App_Themes/" & Page.Theme & "/Demo/Logotype" & ("_" & DemoName) & ".png"
Else
Logotype.ImageUrl = "~/App_Themes/" & Page.Theme & "/Demo/Logotype" & ("") & ".png"
End If
I believe this is what changes the Logotype.png image dynamically, and pulls it from the correct Theme folder when the user changes the Theme in the combobox. How can I use this code to do something similar? I already have the combobox working and it changes the theme, but I want my Default.aspx page to look at different versions of lhi_logo.png, not Logotype.png. I have different png versions in the proper theme folders already. What do you suggest?
Also, where exactly are you declaring Logotype? I don't see it in the Demo.master.vb file, and Visual Studio is telling me its not declared. Are you declaring it in Utils.vb or some other global reference file?