I made the changes as requested. (Shown below) and copied the new dll file to the dnn\bin direcotry, but I am seeing no change to behaviour. Is there something else I should be doing?
If _EditorWysiwygModeCss = "" Then
'Dim s1, s2, s3, s4 As String
's1 = Common.Globals.HostPath & "default.css" 'default css
's2 = PortalSettings.ActiveTab.SkinPath & "skin.css" 'skin css
's3 = (PortalSettings.ActiveTab.SkinSrc).Substring(0, PortalSettings.ActiveTab.SkinSrc.LastIndexOf("/")) & "/skin.css"
's4 = PortalSettings.HomeDirectory & "portal.css" 'portal stylesheet
'cntlCE.EditorWysiwygModeCss = s1 & "," & s2 & "," & s3 & ", " & s4
Dim s2, s3, s4 As String
s2 = PortalSettings.ActiveTab.SkinPath & "skin.css"
'skin css
s3 = (PortalSettings.ActiveTab.SkinSrc).Substring(0, PortalSettings.ActiveTab.SkinSrc.LastIndexOf("/")) & "/skin.css"
s4 = PortalSettings.HomeDirectory & "portal.css"
'portal stylesheet
cntlCE.EditorWysiwygModeCss = s2 & "," & s3 & ", " & s4
Else
cntlCE.EditorWysiwygModeCss = _EditorWysiwygModeCss