Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 My Forum Themes 3.4
 New Topic  Topic Locked
 Printer Friendly
Previous Page
Author Previous Topic Topic Next Topic
Page: of 2

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 29 September 2002 :  07:14:48  Show Profile  Visit PeeWee.Inc's Homepage
Can i use a ing as a backround with this? if so how?

De Priofundus Calmo Ad Te Damine
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 29 September 2002 :  07:39:42  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
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
Go to Top of Page

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 29 September 2002 :  08:36:37  Show Profile  Visit PeeWee.Inc's Homepage
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
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 29 September 2002 :  08:52:15  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
I'm not sure this will work but try:

strCategoryBGColor = ""

@tomic

SportsBettingAcumen.com
Go to Top of Page

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 29 September 2002 :  10:25:03  Show Profile  Visit PeeWee.Inc's Homepage
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
Go to Top of Page

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 29 September 2002 :  11:33:02  Show Profile  Visit PeeWee.Inc's Homepage
http://www21.brinkster.com/pornstarpeewee/db/forum.asp?FORUM_ID=2
you can see this here

De Priofundus Calmo Ad Te Damine
Go to Top of Page

PeeWee.Inc
Senior Member

United Kingdom
1893 Posts

Posted - 29 September 2002 :  13:02:08  Show Profile  Visit PeeWee.Inc's Homepage
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
Go to Top of Page

DCM
Starting Member

37 Posts

Posted - 04 December 2002 :  23:06:50  Show Profile  Visit DCM's Homepage
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
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 29 December 2002 :  05:38:52  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
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
Go to Top of Page

DCM
Starting Member

37 Posts

Posted - 06 January 2003 :  02:15:23  Show Profile  Visit DCM's Homepage
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
Go to Top of Page

tduffy
Junior Member

146 Posts

Posted - 07 January 2003 :  15:02:18  Show Profile
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?
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 07 January 2003 :  18:57:19  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
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
Go to Top of Page

@tomic
Senior Member

USA
1790 Posts

Posted - 07 January 2003 :  18:58:44  Show Profile  Visit @tomic's Homepage  Send @tomic an ICQ Message
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
Go to Top of Page

Palbin
Starting Member

USA
4 Posts

Posted - 20 January 2003 :  19:44:46  Show Profile  Visit Palbin's Homepage  Send Palbin an AOL message  Send Palbin an ICQ Message  Send Palbin a Yahoo! Message
What do you mean by user selected themes? Iknow the admin can change them but can a regular user?
Go to Top of Page
Page: of 2 Previous Topic Topic Next Topic  
Previous Page
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.26 seconds. Powered By: Snitz Forums 2000 Version 3.4.07