Author |
Topic |
Image
Average Member
Canada
574 Posts |
Posted - 21 February 2003 : 22:34:21
|
All the MODs are pre-installed. You should read the included 'readme' and do the two setup of admin. You should have no trouble. Let me know how it went. |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 22 February 2003 : 07:30:49
|
Response.Write " <font size=""" & strFooterFontSize & """ class=shadow border="0" width="100%" cellspacing="0" cellpadding="0"><small>" & fLang(strLangTopic00110) & " " & Reply_MemberPosts & "</small></font></p></td>" & vbNewLine & _
kicks up a error
Ahh, i did it about 10 ways and they all kick up errors
If i upload my topic.asp could you add it there and send it to me, that way i can see how you have added it ? |
De Priofundus Calmo Ad Te Damine |
|
|
Hamlin
Advanced Member
United Kingdom
2386 Posts |
Posted - 22 February 2003 : 07:45:28
|
Try
Response.Write " <font size=""" & strFooterFontSize & """ class=""shadow"" border=""0"" width=""100%"" cellspacing=""0"" cellpadding=""0""><small>" & fLang(strLangTopic00110) & " " & Reply_MemberPosts & "</small></font></p></td>" & vbNewLine & _
|
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 22 February 2003 : 07:58:47
|
That gives the text that color and not the shadow
|
De Priofundus Calmo Ad Te Damine |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 22 February 2003 : 09:22:59
|
Is there any way i can edit the images dir with the skins? |
De Priofundus Calmo Ad Te Damine |
|
|
Image
Average Member
Canada
574 Posts |
Posted - 22 February 2003 : 18:06:17
|
In <td or <table <td align=center class=shadow valign=""top"" width=""" & strTopicWidthLeft or <table class=shadow border="0" width="100%" cellspacing="0" cellpadding="0">
not in<font size="""
|
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 22 February 2003 : 18:12:33
|
Response.Write " <font size=""" & strFooterFontSize & """><small>" & fLang(strLangTopic00110) & " " & Reply_MemberPosts & "</small></font></p></td>" & vbNewLine & _
" <td class=topicategory height=""100%"" width=""" & strTopicWidthcenter & """"
I edited to:
Response.Write " <font size=""" & strFooterFontSize & """><small>" & fLang(strLangTopic00110) & " " & Reply_MemberPosts & "</small></font></p></td>" & vbNewLine & _
" <td align=center class=shadow valign=""top"" width=""" & strTopicWidthLeft& """"
and still no go |
De Priofundus Calmo Ad Te Damine |
|
|
Image
Average Member
Canada
574 Posts |
Posted - 22 February 2003 : 18:55:47
|
Now, At which place you put the .shadow { color: #BFDFFF; FILTER: shadow(color=#black, strenght=#1) } in your page |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 22 February 2003 : 18:57:00
|
I am tryin to do it on your forum code, so it in in default.CSS |
De Priofundus Calmo Ad Te Damine |
|
|
Image
Average Member
Canada
574 Posts |
Posted - 22 February 2003 : 19:07:28
|
put .shadow { color: #BFDFFF; FILTER: shadow(color=#black, strenght=#1) } in CSS |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 22 February 2003 : 19:11:05
|
wayhay, got it working on the footer, not just to try other files |
De Priofundus Calmo Ad Te Damine |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 22 February 2003 : 19:53:40
|
I still cant seem to get it workin for the Author's name, title, stars, posts and avatars in topic.asp Could you send me that block of code from your file, it should work as i am running your mod. |
De Priofundus Calmo Ad Te Damine |
|
|
Image
Average Member
Canada
574 Posts |
Posted - 22 February 2003 : 20:50:01
|
Reply_Status = arrReplyData(rR_STATUS, iForum)
Reply_Date = arrReplyData(rR_DATE, iForum)
Reply_MsgIcon = arrReplyData(rR_MSGICON, iForum)
if CanShowSignature = 1 then
Reply_MemberSig = trim(arrReplyData(rM_SIG, iForum))
end if
if intI = 0 then
CColor = strAltForumCellColor
else
CColor = strForumCellColor
end if
Response.Write " <tr>" & vbNewLine & _
" <td rowspan=""3"" class=forumcellcolor style=""PADDING-RIGHT: 5px; PADDING-LEFT: 5px; PADDING-BOTTOM: 5px; PADDING-TOP: 5px"" valign=""top"" align=""center"">" & vbNewLine & _
" <table border=""0"" cellspacing=""0"" cellpadding=""0"">" & vbNewLine & _
" <tr>" & vbNewLine & _
" <td align=center class=shadow valign=""top"" width=""" & strTopicWidthLeft & """"
if lcase(strTopicNoWrapLeft) = "1" then Response.Write(" nowrap")
Response.Write ">" & vbNewLine & _
" <p><font size=""" & strDefaultFontSize & """><b>" & profileLink(ChkString(Reply_MemberName,"display"),Reply_Author) & "</b></font><br />" & vbNewLine
if strShowRank = 1 or strShowRank = 3 then
Response.Write " <font size=""" & strFooterFontSize & """><small>" & ChkString(getMember_Level(Reply_MemberTitle, Reply_MemberLevel, Reply_MemberPosts),"display") & "</small></font></br />" & vbNewLine
end if
if strShowRank = 2 or strShowRank = 3 then
Response.Write " " & getStar_Level(Reply_MemberLevel, Reply_MemberPosts) |
|
|
Image
Average Member
Canada
574 Posts |
Posted - 22 February 2003 : 21:44:42
|
quote: Originally posted by PeeWee.Inc
Is there any way i can edit the images dir with the skins?
In CSS } .image { BACKGROUND-IMAGE: url(images/background.gif); VERTICAL-ALIGN: middle } |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 23 February 2003 : 07:20:39
|
Yes, that will edit the backround image, but what i need to do is have a new image dir for each skin, so it loads all new images when the skins are used. |
De Priofundus Calmo Ad Te Damine |
|
|
Topic |
|