I applied the Advanced Color MOD on my forum and everything looked fine.... When I look at the profile info for a member, the tables are all screwed up.. I replaced the config.asp and the problem was fixed. Has anyone seen this?
If I replace the config.asp file with a backup copy it fixes the problem. I haven't applied many MOD's top the forum.
below are the changes that I made to the config.asp per the MOD instructions!
dim strPageBgImage, strHeadCellImage, strCategoryCellImage '<--#### ADVANCED COLOR CONTROL PANEL CODE: 1 LINE
AND---
strPageBgImage = Application(strCookieURL & "strPageBgImage")'<-- ####### BEGIN ADVANCED COLOR CONTROL PANEL CODE: 18 LINE ADDITION strHeadCellImage = Application(strCookieURL & "strHeadCellImage") strCategoryCellImage = Application(strCookieURL & "strCategoryCellImage") strPageBGColor2 = Application(strCookieURL & "STRPAGEBGCOLOR") strHeadCellColor2 = Application(strCookieURL & "STRHEADCELLCOLOR") strCategoryCellColor2 = Application(strCookieURL & "STRCATEGORYCELLCOLOR")
if strPageBgImage <> "" then strPageBGColor = strPageBGColor & """ background=""" & strPageBgImage end if
if strHeadCellImage <> "" then strHeadCellColor = strHeadCellColor & """ background=""" & strHeadCellImage end if
if strCategoryCellImage <> "" then strCategoryCellColor = strCategoryCellColor & """ background=""" & strCategoryCellImage end if '<-- ####### END ACC CODE
I have not written any code... it is all from the mods available at snitz exchange. I can barely spell CoDe.