Welcome to Geeklog, Anonymous Monday, December 23 2024 @ 02:30 am EST
Geeklog Forums
Register User (user.php) background color
pillguy
Anonymous
http://pharmit.us/Geeklog/users.php?mode=new
Is the webpage I am having issue with. I cannot find in style.css where the bg color for this is configured. The color shown is #FFFFFF. I want it to be #2E4166.
Can anyone tell me where I can change this?
I am using gameserver theme.
Thanks!
Is the webpage I am having issue with. I cannot find in style.css where the bg color for this is configured. The color shown is #FFFFFF. I want it to be #2E4166.
Can anyone tell me where I can change this?
I am using gameserver theme.
Thanks!
8
9
Quote
pillguy
Anonymous
So I deleted the #FFFFFF from my version of the file.
Now I have:
{lang_message}
But it is still white (FFFFFF). How can I change this?
Thanks for the help.
Now I have:
{lang_message}
But it is still white (FFFFFF). How can I change this?
Thanks for the help.
9
7
Quote
Status: offline
pillguy
Forum User
Newbie
Registered: 07/10/05
Posts: 3
Sorry. I was not logged in.
I deleted the #FFFFFF, so I now have
<form action="{site_url}/users.php" method="post">
<table border="0" cellspacing="0" cellpadding="3">
<tr>
It still does not work.
Check it here
Click on New User to see it.
What am I doing wrong?
Thanks
I deleted the #FFFFFF, so I now have
Text Formatted Code
<td><form action="{site_url}/users.php" method="post">
<table border="0" cellspacing="0" cellpadding="3">
<tr>
It still does not work.
Check it here
Click on New User to see it.
What am I doing wrong?
Thanks
7
6
Quote
Status: offline
pillguy
Forum User
Newbie
Registered: 07/10/05
Posts: 3
In looking at the source code
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>PharmIT.us - Register with PharmIT.us!</title>
<link rel="stylesheet" type="text/css" href="http://pharmit.us/Geeklog/layout/gameserver/style.css" title="gameserver">
<link rel="alternate" type="application/rss+xml" title="RSS" href= "http://www.pharmit.us/Geeklog/backend/geeklog.rdf">
<!-- Needed JavaScript Code -->
<script language="JavaScript">
var cleared = 0;
function clearField(field)
{
if (cleared != 1) {
field.value = ""
cleared = 1
} else {
cleared = 0
}
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000">
<center>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="269"><a href="http://pharmit.us/Geeklog"><img src="http://pharmit.us/Geeklog/layout/gameserver/theme-images/gameserver_logo2.gif" alt="Welcome to gameserver" border="0"></a></td>
<td valign="bottom" align="right">
<form action="http://pharmit.us/Geeklog/search.php" method="get">
<div align="right">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" name="query" class="menusearch" size="25"></td>
<td><input type="submit" value="Search"></td>
<td> (<a href="http://pharmit.us/Geeklog/search.php">advanced search</a>) <input type="hidden" name="type" value="all"> <input type="hidden" name="mode" value="search"></td>
</tr>
</table>
at here
I see the bg color listed as #FFFFFF still. What am I doing?
Text Formatted Code
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>PharmIT.us - Register with PharmIT.us!</title>
<link rel="stylesheet" type="text/css" href="http://pharmit.us/Geeklog/layout/gameserver/style.css" title="gameserver">
<link rel="alternate" type="application/rss+xml" title="RSS" href= "http://www.pharmit.us/Geeklog/backend/geeklog.rdf">
<!-- Needed JavaScript Code -->
<script language="JavaScript">
var cleared = 0;
function clearField(field)
{
if (cleared != 1) {
field.value = ""
cleared = 1
} else {
cleared = 0
}
}
</script>
</head>
<body bgcolor="#FFFFFF" text="#000000" link="#000000" vlink="#000000" alink="#000000">
<center>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="269"><a href="http://pharmit.us/Geeklog"><img src="http://pharmit.us/Geeklog/layout/gameserver/theme-images/gameserver_logo2.gif" alt="Welcome to gameserver" border="0"></a></td>
<td valign="bottom" align="right">
<form action="http://pharmit.us/Geeklog/search.php" method="get">
<div align="right">
<table border="0" cellspacing="0" cellpadding="0">
<tr>
<td><input type="text" name="query" class="menusearch" size="25"></td>
<td><input type="submit" value="Search"></td>
<td> (<a href="http://pharmit.us/Geeklog/search.php">advanced search</a>) <input type="hidden" name="type" value="all"> <input type="hidden" name="mode" value="search"></td>
</tr>
</table>
at here
I see the bg color listed as #FFFFFF still. What am I doing?
11
10
Quote
mach
Anonymous
what color do you want it to be?
where you deleted the #FFFFFF in the first place, just replace it with the color that you want, i.e., #2E4166
simply deleting the cell's color will leave the cell to inherit the bgcolor of the parent, in this case that is still #FFFFFF. so, you just specify another color for the cell.
where you deleted the #FFFFFF in the first place, just replace it with the color that you want, i.e., #2E4166
simply deleting the cell's color will leave the cell to inherit the bgcolor of the parent, in this case that is still #FFFFFF. so, you just specify another color for the cell.
9
9
Quote
Status: offline
pillguy
Forum User
Newbie
Registered: 07/10/05
Posts: 3
Quote by mach: what color do you want it to be?
where you deleted the #FFFFFF in the first place, just replace it with the color that you want, i.e., #2E4166
simply deleting the cell's color will leave the cell to inherit the bgcolor of the parent, in this case that is still #FFFFFF. so, you just specify another color for the cell.
where you deleted the #FFFFFF in the first place, just replace it with the color that you want, i.e., #2E4166
simply deleting the cell's color will leave the cell to inherit the bgcolor of the parent, in this case that is still #FFFFFF. so, you just specify another color for the cell.
Well, I took both suggestions and combined them. It was actually a different file (registrationform.thtml) that was causing the issue. After changing colors in that file as you mentioned, it was good to go.
Thanks
8
9
Quote
All times are EST. The time is now 02:30 am.
- Normal Topic
- Sticky Topic
- Locked Topic
- New Post
- Sticky Topic W/ New Post
- Locked Topic W/ New Post
- View Anonymous Posts
- Able to post
- Filtered HTML Allowed
- Censored Content