I'm trying to install Advanced Color Control in my forum v. 3.3.05 but my code in admin_config_colors.asp look like this:
Response.Write ">7 (36 pt)</option>" & vbNewLine & _
" </select>" & vbNewLine & _
" <a href=""JavaScript:openWindow3('pop_config_help.asp#fontsize')""><img src=""" & strImageUrl & "icon_smile_question.gif"" border=""0""></a></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr valign=""top"">" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """ align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>Base Background Color:</b> </font></td>" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """><input type=""text"" name=""strPageBGColor"" size=""10"" value="""
if strPageBGColor <> "" then Response.Write(strPageBGColor)
Response.Write """>" & vbNewLine & _
" <a href=""JavaScript:openWindow3('pop_config_help.asp#colors')""><img src=""" & strImageUrl & "icon_smile_question.gif"" border=""0""></a></td>" & vbNewLine & _
" </tr>" & vbNewLine & _
" <tr valign=""top"">" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """ align=""right""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """><b>Default Font Color:</b> </font></td>" & vbNewLine & _
" <td bgColor=""" & strPopUpTableColor & """><input type=""text"" name=""strDefaultFontColor"" size=""10"" value="""
if strDefaultFontColor <> "" then Response.Write(strDefaultFontColor)
Response.Write """>" & vbNewLine & _
And the code in the Advanced Color Control 3.3.x i have downloaded from snitz Mod Exchange look like this:
<tr>
<td bgColor="<% =strPopUpTableColor %>" align="right"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b>Base Background Image:</b> </font></td>
<td bgColor="<% =strPopUpTableColor %>">
<input type="text" onChange='document.all.previewPageBgImage.style.backgroundImage = "url(" + this.value + ")";' id="strPageBgImage" name="strPageBgImage" size="15" value="<% if strPageBgImage <> "" then Response.Write(strPageBgImage) else '## do nothing %>">
<span id="previewPageBgImage" style="background-image: url('<%=strPageBgImage%>');" align=absmiddle> </span>
</td>
</td><td bgColor="<% =strPopUpTableColor %>"><a href="JavaScript:openWindow3('pop_config_help.asp#bgimages')"><img src="<%= strImageURL %>icon_smile_question.gif" align=absmiddle border="0"></a>
</tr>
<tr valign="top">
<td bgColor="<% =strPopUpTableColor %>" align="right"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b>Default Font Color:</b> </font></td>
<td bgColor="<% =strPopUpTableColor %>"><% doColorMixer "DefaultFontColor", strDefaultFontColor, "text" %></td>
</tr>
<tr valign="top">
<td bgColor="<% =strPopUpTableColor %>" align="right"><font face="<% =strDefaultFontFace %>" size="<% =strDefaultFontSize %>"><b>Link Color:</b> </font></td>
<td bgColor="<% =strPopUpTableColor %>"><% doColorMixer "LinkColor", strLinkColor, "text" %></td>
</tr>
I don't know how to chance all that code in Advanced Color Control.asp plz help me