There is a bug with DNN 3.2 which will cause a problem with solpart menu if you try to upgrade your web site to this version and you have applied one of my free skins.
You can read more about that, at asp.net forums this thread
To fix that, you can download the latest version of the skin you use from my downloads area and upload it again to your upgraded DNN web site. All DNN 3 free skins have been updated and will fix it.
If you have made changes to the skin and you just want to fix the code on your own, keep reading.
The only thing you need to do to make the menu work properly is to add the following attributes to the SOLPARTMENU tag in the ascx or in the skin.xml for html skins:
(for ascx) CSSNodeSelectedRoot="rootmenuitembreadcrumb" CSSNodeSelectedSub="submenuitemselected" (for html skins you add them in skin.xml)
<Setting> <Name>CSSNodeSelectedRoot</Name> <Value>rootmenuitembreadcrumb</Value> </Setting> <Setting> <Name>CSSNodeSelectedSub</Name> <Value>submenuitemselected</Value> </Setting>
That will fix it! |