I downloaded the source and found the following in the Render method of the CaptchaControl control class...no class has been specified. I know this is very minor...but it does affect skinning.
'Render text box <input> Tag
writer.AddAttribute(HtmlTextWriterAttribute.Type, "text")
writer.AddAttribute(HtmlTextWriterAttribute.Style, "width:" + Width.ToString)
writer.AddAttribute(HtmlTextWriterAttribute.Maxlength, _CaptchaText.Length.ToString)
writer.AddAttribute(HtmlTextWriterAttribute.Name, Me.UniqueID)
...can we get this added to the source tree/builds...writer.AddAttribute(HtmlTextWriterAttribute.Class, "NormalTextBox")...or however else it should be handled. I am new to DNN...but after reviewing some source...why no WITH blocks? Don't like them?
With writer
.AddAttribute(HtmlTextWriterAttribute.Type, "text")
.AddAttribute(HtmlTextWriterAttribute.Class, "NormalTextBox")
.AddAttribute(HtmlTextWriterAttribute.Style, "width:" + Width.ToString)
.AddAttribute(HtmlTextWriterAttribute.Maxlength, _CaptchaText.Length.ToString)
.AddAttribute(HtmlTextWriterAttribute.Name, Me.UniqueID)
End With