Nukemods Forum  
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» .::.
tattoo fonts
http://www.checkoutmyink.com/category/tattoo-fonts-tattoo

Go Back   Nukemods Forum > PHP-Nuke 6.5 to 6.9 > Nuke 6.5 to 6.9 - Themes

Reply
 
LinkBack Thread Tools Display Modes
subBlack 6.5 Theme - Problem With Box Background Color
Old
  (#1 (permalink))
Junior Member
 
Status: Offline
Posts: 3
Join Date: Jul 2003
subBlack 6.5 Theme - Problem With Box Background Color - 07-18-2003, 03:51 PM

Hi

I use the subBlack 6.5 theme, but have a problem with the background color of certain text box fields. For example: E-mail entry fields. I've included a screenshot of what it looks like:



The text seems to be the same color as the bright yellow in the box, so it's impossible to see the entry. Most other fields have the nice black background, but there's a few specific fields that have this yellow background. Is there a way to fix it? Thanks in advance
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#2 (permalink))
Moderator
 
Status: Offline
Posts: 737
Join Date: Nov 2002
07-18-2003, 05:51 PM

Thy this:
Open modules/Your_Account/index.php

around line 768 find:
Code:
echo "<table cellpadding=\"3\" border=\"0\" width='100%'><tr><td bgcolor='$bgcolor2'>"
	    ."<form name=\"Register\" action=\"modules.php?name=$module_name\" method=\"post\">"
	    .""._USRNICKNAME.":</td><td bgcolor='$bgcolor3'>$userinfo[username]</td></tr><tr>"
	    ."<tr><td bgcolor='$bgcolor2'>"._UREALNAME.":
"._OPTIONAL."</td><td bgcolor='$bgcolor3'>"
	    ."<input type=\"text\" name=\"realname\" value=\"$userinfo[name]\" size=\"50\" maxlength=\"60\"></td></tr>"
	    ."<tr><td bgcolor='$bgcolor2'>"._UREALEMAIL.":
"._REQUIRED."</td>"
	    ."<td bgcolor='$bgcolor3'><input type=\"text\" name=\"user_email\" value=\"$userinfo[user_email]\" size=\"50\" maxlength=\"255\">
"._EMAILNOTPUBLIC."</td></tr>"
	    ."<tr><td bgcolor='$bgcolor2'>"._UFAKEMAIL.":
"._OPTIONAL."</td>"
	    ."<td bgcolor='$bgcolor3'><input type=\"text\" name=\"femail\" value=\"$userinfo[femail]\" size=\"50\" maxlength=\"255\">
"._EMAILPUBLIC."</td></tr>"
	    ."<tr><td bgcolor='$bgcolor2'>"._YOURHOMEPAGE.":
"._OPTIONAL."</td>"
	    ."<td bgcolor='$bgcolor3'><input type=\"text\" name=\"user_website\" value=\"$userinfo[user_website]\" size=\"50\" maxlength=\"255\"></td></tr>"
	    ."<tr><td bgcolor='$bgcolor2'>"._YOURAVATAR.":
"._OPTIONAL."</td><td bgcolor='$bgcolor3'>[ <a href=\"modules.php?name=$module_name&amp;op=avatarlist\">"._LIST."</a> ]"
	    ."<select name=\"user_avatar\" onChange=\"showimage()\">"
	    ."<option value=\"$userinfo[user_avatar]\">$userinfo[user_avatar]</option>";
Replace with:
Code:
        echo "<table cellpadding=\"3\" border=\"0\" width='100%'><tr><td bgcolor='$bgcolor2'>"
	    ."<form name=\"Register\" action=\"modules.php?name=$module_name\" method=\"post\">"
	    .""._USRNICKNAME.":</td><td bgcolor='$bgcolor3'>$userinfo[username]</td></tr><tr>"
	    ."<tr><td bgcolor='$bgcolor2'>"._UREALNAME.":
"._OPTIONAL."</td><td bgcolor='$bgcolor3'>"
	    ."<input type=\"text\" name=\"realname\" value=\"$userinfo[name]\" size=\"50\" maxlength=\"60\"></td></tr>"
	    ."<tr><td bgcolor='$bgcolor2'>"._UREALEMAIL.":
"._REQUIRED."</td><td bgcolor='$bgcolor3'>"
	    ."<input type=\"text\" name=\"user_email\" value=\"$userinfo[user_email]\" size=\"50\" maxlength=\"255\">
"._EMAILNOTPUBLIC."</td></tr>"
	    ."<tr><td bgcolor='$bgcolor2'>"._UFAKEMAIL.":
"._OPTIONAL."</td><td bgcolor='$bgcolor3'>"
	    ."<input type=\"text\" name=\"femail\" value=\"$userinfo[femail]\" size=\"50\" maxlength=\"255\">
"._EMAILPUBLIC."</td></tr>"
	    ."<tr><td bgcolor='$bgcolor2'>"._YOURHOMEPAGE.":
"._OPTIONAL."</td><td bgcolor='$bgcolor3'>"
	    ."<input type=\"text\" name=\"user_website\" value=\"$userinfo[user_website]\" size=\"50\" maxlength=\"255\"></td></tr>"
	    ."<tr><td bgcolor='$bgcolor2'>"._YOURAVATAR.":
"._OPTIONAL."</td><td bgcolor='$bgcolor3'>[ <a href=\"modules.php?name=$module_name&amp;op=avatarlist\">"._LIST."</a> ]"
	    ."<select name=\"user_avatar\" onChange=\"showimage()\">"
	    ."<option value=\"$userinfo[user_avatar]\">$userinfo[user_avatar]</option>";
I don't know this will make a difference. All I did was rearrange things slightly. Keep a back up of the original in the event that this doesn't work.
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#3 (permalink))
Junior Member
 
Status: Offline
Posts: 3
Join Date: Jul 2003
07-18-2003, 07:17 PM

Thanks for the attempt, but that didn't change it Is it some sort of style setting or global setting that is overriding the theme? Either way it's very frustrating...
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#4 (permalink))
Junior Member
 
Status: Offline
Posts: 90
Join Date: Nov 2002
Location: Fort Payne, AL
07-18-2003, 07:32 PM

JadeFist..... do you have the google toobar installed to your browser...

if so then its the autofill on forms. mine does the same thing. it has nothing to do w/ your theme.
 Send a message via ICQ to ShRapNeR Send a message via Yahoo to ShRapNeR Send a message via AIM to ShRapNeR Send a message via MSN to ShRapNeR  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old
  (#5 (permalink))
Junior Member
 
Status: Offline
Posts: 3
Join Date: Jul 2003
07-18-2003, 09:03 PM

YOU, my friend, rock! That was it. I do have the newest Google bar installed (really like it by the way). I went into the options and unchecked the 'auto-fill' button and "ta-da" problem solved! Thanks for posting
   
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem w/ Changing HeliusGray Background Color kindpeacho Theme packs 9 02-20-2006 07:18 PM
Enter a background color in a css file Dauthus Theme packs 1 07-05-2005 06:48 AM
background color? maverick1 Nuke 7.x - Blocks 4 03-24-2005 01:28 PM
Subblack background color HimmelHund Theme packs 4 04-15-2003 06:02 PM
Changing Subsytems Background Color !! dds Purged Topics 5 02-24-2003 02:02 AM




vBulletin Skin developed by: vBStyles.com


LinkBacks Enabled by vBSEO 3.3.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31