Author |
Topic |
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 29 September 2002 : 07:14:48
|
Can i use a ing as a backround with this? if so how? |
De Priofundus Calmo Ad Te Damine |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 29 September 2002 : 07:39:42
|
an image?
to a theme you add:
strTmpPageBGImageURL = " background=""imagefolder/neatokeen_background.gif"""
The red part is the name of your image folder. Whatever strImageURL points to.
@tomic |
SportsBettingAcumen.com |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 29 September 2002 : 08:36:37
|
yeah i did that and it worked Now what i wanna do is make some of the things (like Category Background Color) to be seethru, what is the HEX code to do this, if ya get what i mean. |
De Priofundus Calmo Ad Te Damine |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 29 September 2002 : 08:52:15
|
I'm not sure this will work but try:
strCategoryBGColor = ""
@tomic |
SportsBettingAcumen.com |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 29 September 2002 : 10:25:03
|
tested it and i t never worked looks like i will have to scrap that idea and just make a whole new skin, never mind aye i have made a skin..... it's a dark one, would you like it?
Case 1 '##### Bravo
strDefaultFontFace = "Verdana, Arial, Helvetica" 'Default Font Face strDefaultFontSize = 1 strHeaderFontSize = 2 strFooterFontSize = 1 strPageBgColor = "#666666" strDefaultFontColor = "red" strLinkColor = "white" strLinkTextDecoration = "none" strVisitedLinkColor = "white" strVisitedTextDecoration = "none" strActiveLinkColor = "white" strHoverFontColor = "white" strHoverTextDecoration = "underline" strHeadCellColor = "#232386" strHeadFontColor = "white" strCategoryCellColor = "#3F3F88" strCategoryFontColor = "FFFFFF" strForumFirstCellColor = "white" strForumCellColor = "#333366" strAltForumCellColor = "#CECECE" strForumFontColor = "000000" strForumLinkColor = "white" strTableBorderColor = "000000" strPopUpTableColor = "F7FFE7" strPopUpBorderColor = "darkgray" strNewFontColor = "black"
|
De Priofundus Calmo Ad Te Damine |
|
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
|
PeeWee.Inc
Senior Member
United Kingdom
1893 Posts |
Posted - 29 September 2002 : 13:02:08
|
Case 6 '####"dolls" strDefaultFontFace = "Verdana, Arial, Helvetica" 'Default Font Face strDefaultFontSize = 1 strHeaderFontSize = 2 strFooterFontSize = 1 strPageBgColor = "#FB7E00" strDefaultFontColor = "000000" strLinkColor = "800000" strLinkTextDecoration = "blink" strVisitedLinkColor = "maroon" strVisitedTextDecoration = "underline" strActiveLinkColor = "lightsalmon" strHoverFontColor = "black" strHoverTextDecoration = "blink" strHeadCellColor = "#CC3300" strHeadFontColor = "FFFFFF" strCategoryCellColor = "#FF6600" strCategoryFontColor = "000000" strForumFirstCellColor = "#FF9902" strForumCellColor = "#FF9902" strAltForumCellColor = "#FF9F06" strForumFontColor = "000000" strForumLinkColor = "800000" strTableBorderColor = "000000" strPopUpTableColor = "F9F9F9" strPopUpBorderColor = "000000" strNewFontColor = "000000"
can see this here........ http://www21.brinkster.com/pornstarpeewee/db/forum.asp?FORUM_ID=17 I tried to make it look like this...... http://www.bravo.co.uk/newdolls/ |
De Priofundus Calmo Ad Te Damine |
|
|
DCM
Starting Member
37 Posts |
Posted - 04 December 2002 : 23:06:50
|
Is there a way to have the forum image change with the theme? I would like to have different logos appear depending if the theme has a black background or a white background. TIA, Dan |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 29 December 2002 : 05:38:52
|
If you want to use this MOD and the My Personalization Themes at the same time use this code in inc_header.asp and inc_header_short.asp:
if not Request.Cookies(strUniqueID & "User")("Name") = "" then
'##Get Member Page Configuration from Table FORUM_MY_CONFIG
id = getMemberID(Request.Cookies(strUniqueID & "User")("Name"))
strSQL = "SELECT THEME_ID FROM " & strTablePrefix & "MY_CONFIG WHERE MEMBER_ID='" & id & "'"
Set objRS = my_Conn.Execute(strSQL)
if objRS.EOF then
themeid = 0 'default theme is named as zero
else
themeid = objRS("THEME_ID")
end if
objRS.Close
set objRS = Nothing
else
themeid = 0 'not logged in
End if
If themeid <> "0" then
%>
<!--#include file="my_theme.asp"-->
<%
else
%>
<!--#include file="my_theme2.asp"-->
<%
end if
What this does is check to see if you have selected a theme. If not then your themeid is 0 so the code goes to the My Forum Themes as set by admin and uses whatever themes you have selected for your forums. You could reverse this if you want. But this way you get to levels of customization.
1. User selected themes 2. Admin Selected themes
@tomic |
SportsBettingAcumen.com |
Edited by - @tomic on 29 December 2002 05:43:28 |
|
|
DCM
Starting Member
37 Posts |
Posted - 06 January 2003 : 02:15:23
|
quote: Originally posted by @tomic
If you want to use this MOD and the My Personalization Themes at the same time use this code in inc_header.asp and inc_header_short.asp: @tomic
Atomic, I think I kinda blew it. I was thinking this topic was about MY THEME not MY FORUM THEME. What I'm trying to accomplish is to have the forum logo a varaible in the my personalization mod. I want to have some black background themes, and some white background themes. Obviously each of these would need different logos to look right. Yes I know it's now off topic. You can email me if you have an idea for me. TIA, Dan |
|
|
tduffy
Junior Member
146 Posts |
Posted - 07 January 2003 : 15:02:18
|
quote: Originally posted by DCM
quote: Originally posted by @tomic
If you want to use this MOD and the My Personalization Themes at the same time use this code in inc_header.asp and inc_header_short.asp: @tomic
Atomic, I think I kinda blew it. I was thinking this topic was about MY THEME not MY FORUM THEME. What I'm trying to accomplish is to have the forum logo a varaible in the my personalization mod. I want to have some black background themes, and some white background themes. Obviously each of these would need different logos to look right. Yes I know it's now off topic. You can email me if you have an idea for me. TIA, Dan
I want to do the same, did anyone find a way to do this? |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 07 January 2003 : 18:57:19
|
This is exactly how this MOD is supposed to work. I made different logos, one for each background colors and included that image in the theme. It's not off topic at all. Just make a logo/banner for each color you wish to use and set that forum's strTitleImage to the desired image. My "Space" theme has this:
strTitleImage = "sfnlogo_black.jpg"
That's all there is to it. The hard part is making the individual images. Don't forget, you can change any forum image by adding that forum variable to the theme. That means the title image, icons, background image...anything.
@tomic |
SportsBettingAcumen.com |
|
|
@tomic
Senior Member
USA
1790 Posts |
Posted - 07 January 2003 : 18:58:44
|
Tell you what. Here is my entire Space theme so you can get a better idea:
Case 16 '####"Space"
strDefaultFontFace = "Verdana, Arial, Helvetica" 'Default Font Face
strDefaultFontSize = 1
strHeaderFontSize = 2
strFooterFontSize = 1
strPageBgColor = "000000"
strDefaultFontColor = "FFFFFF"
strLinkColor = "6699CC"
strLinkTextDecoration = "underline"
strVisitedLinkColor = "6699CC"
strVisitedTextDecoration = "underline"
strActiveLinkColor = "6699CC"
strHoverFontColor = "FFFFFF"
strHoverTextDecoration = "underline"
strHeadCellColor = "000033"
strHeadFontColor = "FFFFFF"
strCategoryCellColor = "003366"
strCategoryFontColor = "FFFFFF"
strForumFirstCellColor = "333333"
strForumCellColor = "333333"
strAltForumCellColor = "666666"
strForumFontColor = "FFFFFF"
strForumLinkColor = "6699CC"
strTableBorderColor = "003366"
strPopUpTableColor = "191944"
strPopUpBorderColor = "003366"
strNewFontColor = "FFFFFF"
strHeadCellBGImage = "darkgraygradient.gif"
strCategoryCellBGImage = "lightgraygradient.gif"
strTitleImage = "sfnlogo_black.jpg"
strTmpPageBGImageURL = " background=""icons/stars_tile.gif"""
strIconFolder = "icon_rocket.gif|18|19"
strIconFolderHot = "icon_rocket_flaming.gif|18|19"
strIconFolderNew = "icon_rocket_new.gif|18|19"
strIconFolderNewTopic = "icon_folder_new_topic.gif|21|24"
strIconFolderNewHot = "icon_rocket_flaming.gif|18|19"
@tomic |
SportsBettingAcumen.com |
|
|
Palbin
Starting Member
USA
4 Posts |
Posted - 20 January 2003 : 19:44:46
|
What do you mean by user selected themes? Iknow the admin can change them but can a regular user? |
|
|
Topic |
|