Const strIconName = "IconName.gif|15|15" '15|15 change these numbers to the height and width of your icons Const strIconName = "IconName.gif|15|15"
in "topic.asp"
getCurrentIcon(strIconClosedTopic,"","align=""absmiddle""") & change this
if strSex = "1" and trim(Reply_MemberSex) <> "" then Response.Write " <font color=""" & strForumFontColor & """ face=""" & strDefaultFontFace & """ size=""" & strFooterFontSize & """><small>" & Reply_MemberSex & "</small></font><br />" & vbNewLine end if
to this
if strSex = "1" and trim(Reply_MemberSex) <> "" then if trim(Reply_MemberSex) <> "male" then Response.Write getCurrentIcon(strFemaleIconName,"","align=""absmiddle""") & "<br />" & vbNewLine else Response.Write getCurrentIcon(strMaleIconName,"","align=""absmiddle""") & "<br />" & vbNewLine end if end if
I get it to work fine if I display text rather than gender icons as that thread initially instructs. Making the changes above, I get the female icon regardless.
I have checked & rechecked my icon names. Look good to me. Anybody know the problem?