Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/O Code)
 More colors?

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!
Before posting, make sure you have read this topic!

Screensize:
UserName:
Password:
Format Mode:
Format: BoldItalicizedUnderlineStrikethrough Align LeftCenteredAlign Right Horizontal Rule Insert HyperlinkInsert EmailInsert Image Insert CodeInsert QuoteInsert List
   
Message:

* HTML is OFF
* Forum Code is ON
Smilies
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Clown [:o)]
Black Eye [B)] Eight Ball [8] Frown [:(] Shy [8)]
Shocked [:0] Angry [:(!] Dead [xx(] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
   

T O P I C    R E V I E W
MaGraham Posted - 21 January 2012 : 16:37:05
Could more colors be added to our list of colors i.e. CRIMSON?


15   L A T E S T    R E P L I E S    (Newest First)
MaGraham Posted - 07 May 2014 : 12:30:47

I bet I looked at that a dozen times and failed to see that error, Carefree!

You're the BEST!

THANK YOU!

Carefree Posted - 07 May 2014 : 11:29:17
You left the word color: off in front of those three colors. It's fixed.
MaGraham Posted - 06 May 2014 : 18:23:40

My members are loving the additional colors for fonts.

I have one more question though.

When you start to select a color for your font. . .after you click on the drop-down arrow and see the list of colors, three colors I've added won't display the actual color in that area. Meaning, the word "Red" is colored red, the word "Blue" is colored blue, etc. These three colors below are not colored.

Seagreen
Light Seagreen
Medium Violet Red

However; those colors display fine in a post when used.

Did I mess up somewhere? I normally use Firefox but I've just now used IE to check this out to see if it's just a browser issue, but IE does the same.



MaGraham Posted - 31 January 2012 : 09:48:23
Carefree - Your little add-on here works PERFECT!

Thank you SO MUCH for your time with this!!

I think I'm going to add a couple more colors. . .


Mission accomplished! :)


MaGraham Posted - 29 January 2012 : 18:33:48
Carefree, I had to postpone doing this little mod add-on. I'll come back and let you know when I get to it. Again, thank you so MUCH!


MaGraham Posted - 29 January 2012 : 18:15:34
I played around with admin_config_colors.asp the other day and thought I had found a way of doing this, but alas my efforts were in vain!




Just a FYI with the image above. Near the bottom of that is actually a graphic I created to make it CLEAR to the members just where they needed to click in order to upload a pic. That's just another reason why it bugs me that I can't figure out how to change the background of the little color drop-down menu! I can usually do this!! (lol)


AnonJr Posted - 26 January 2012 : 16:33:46
You could probably do it with a little CSS, but it would be hard to find a colour that doesn't make one or more of the names hard to read. That's one of the problems with putting the colour name in it's colour.
MaGraham Posted - 26 January 2012 : 11:38:42
I'm about to begin this add-on with the colors and I have a question, if there's anyone out there.

Okay, when you're in 'reply to topic' and you click on the little drop-down arrow to choose a color. . .is there a way I could make just that small amount of background a different color? Maybe a gray or something that would just make the colors show up a little better? Just the area behind the colors. . .



MaGraham Posted - 24 January 2012 : 17:26:46
OH MY! You are simply WONDERFUL!!!

Thank you SO MUCH!!! I can hardly wait to try it!!


I'll let you know as soon as I do though.



Carefree Posted - 24 January 2012 : 10:35:05
You have to modify 2 files. Just repeat the added line for any color you want to include.

"inc_func_common.asp"


Look for the following lines (appx 403-419):

			fString = doCode(fString, "", "", "<font color=""red"">", "</font id=""red"">")
			fString = doCode(fString, "", "", "<font color=""green"">", "</font id=""green"">")
			fString = doCode(fString, "", "", "<font color=""blue"">", "</font id=""blue"">")
			fString = doCode(fString, "", "", "<font color=""white"">", "</font id=""white"">")
			fString = doCode(fString, "", "", "<font color=""purple"">", "</font id=""purple"">")
			fString = doCode(fString, "", "", "<font color=""yellow"">", "</font id=""yellow"">")
			fString = doCode(fString, "", "", "<font color=""violet"">", "</font id=""violet"">")
			fString = doCode(fString, "", "", "<font color=""brown"">", "</font id=""brown"">")
			fString = doCode(fString, "", "", "<font color=""black"">", "</font id=""black"">")
			fString = doCode(fString, "", "", "<font color=""pink"">", "</font id=""pink"">")
			fString = doCode(fString, "", "", "<font color=""orange"">", "</font id=""orange"">")
			fString = doCode(fString, "", "", "<font color=""gold"">", "</font id=""gold"">")
			fString = doCode(fString, "", "", "<font color=""beige"">", "</font id=""beige"">")
			fString = doCode(fString, "", "", "<font color=""teal"">", "</font id=""teal"">")
			fString = doCode(fString, "", "", "<font color=""navy"">", "</font id=""navy"">")
			fString = doCode(fString, "", "", "<font color=""maroon"">", "</font id=""maroon"">")
			fString = doCode(fString, "", "", "<font color=""limegreen"">", "</font id=""limegreen"">")

Below those, insert the following:


			fString = doCode(fString, "[crimson]", "[/crimson]", "<font color=""crimson"">", "</font id=""crimson"">")


"inc_post_buttons.asp"


Look for the following lines (appx 75-88):

		"                	<option style=""color:black"" value=""black"">Black</option>" & vbNewLine & _
		"                	<option style=""color:red"" value=""red"">Red</option>" & vbNewLine & _
		"                	<option style=""color:yellow"" value=""yellow"">Yellow</option>" & vbNewLine & _
		"                	<option style=""color:pink"" value=""pink"">Pink</option>" & vbNewLine & _
		"                	<option style=""color:green"" value=""green"">Green</option>" & vbNewLine & _
		"                	<option style=""color:orange"" value=""orange"">Orange</option>" & vbNewLine & _
		"                	<option style=""color:purple"" value=""purple"">Purple</option>" & vbNewLine & _
		"                	<option style=""color:blue"" value=""blue"">Blue</option>" & vbNewLine & _
		"                	<option style=""color:beige"" value=""beige"">Beige</option>" & vbNewLine & _
		"                	<option style=""color:brown"" value=""brown"">Brown</option>" & vbNewLine & _
		"                	<option style=""color:teal"" value=""teal"">Teal</option>" & vbNewLine & _
		"                	<option style=""color:navy"" value=""navy"">Navy</option>" & vbNewLine & _
		"                	<option style=""color:maroon"" value=""maroon"">Maroon</option>" & vbNewLine & _
		"                	<option style=""color:limegreen"" value=""limegreen"">LimeGreen</option>" & vbNewLine & _

Below those, insert the following:


		"                	<option style=""color:crimson"" value=""crimson"">Crimson</option>" & vbNewLine & _

Podge Posted - 24 January 2012 : 05:05:02
I was talking about using colors in the admin area in admin config colors. I don't know of a way to include hex in a forum post.
MaGraham Posted - 23 January 2012 : 13:59:56
Are there other ways to use the hex?


[color=#FF0000]Should be red text[/color]


[color=FF0000]Should be red text[/color]


MaGraham Posted - 23 January 2012 : 13:44:41
I meant to thank you for sharing the website! Have you ever tried Color Cop?

Color Cop

MaGraham Posted - 23 January 2012 : 13:38:19
But that only works if HTML is enabled, correct?


Podge Posted - 23 January 2012 : 05:40:52
You're better off using hex - #DC143C

http://cloford.com/resources/colours/500col.htm

Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.04 seconds. Powered By: Snitz Forums 2000 Version 3.4.07