View Full Version : Help with trying to change color behind text.


chrishawthorne
10-27-2003, 04:42 PM
I am working on my guestbook, and I am trying to make the color behind the entries 0033ff (blue) , and can't find anywhere to insert it, could you please help?
The page is at scrapmagic.signmyguestbook.com
Here is my code:

<HTML><HEAD><TITLE>Scrapbook Magic - Guestbook</TITLE></HEAD>
<BODY BGCOLOR="#3A99FF" TEXT="white" LINK="white" VLINK="white">

<CENTER>
<TABLE WIDTH=500><TD>
<FONT FACE="verdana, arial" size=2>

<P>
%%entries%%
</P>
<HR>
<P>Older Guestbook Entries: %%links_to_older_entries%%</P>

<HR><BLOCKQUOTE>
<P>Sign Our Guestbook Here:
<form method=post action="http://members.signmyguestbook.com/edit/sign">
Your Name: <input type=text name=signername size=18><BR>
Your E-mail: <input type=text name=email size=18><BR>
Your Homepage/Website: <input type=text name=url size=36 value="http://"><BR>
Your Message:<BR>
<textarea name="message" ROWS="10" COLS="36" wrap="virtual"></TEXTAREA><BR>
<input type=hidden name="username" value="scrapmagic">
<input type=submit value="Submit"></P>
</FORM></P>
</BLOCKQUOTE>

<P><A HREF="http://www.scrapbookmagic.org">Home</A></P>

</TD></TABLE> <FONT FACE="verdana, arial" size=2>
</BODY>
</HTML>

pb&j
10-28-2003, 03:01 AM
<P style="background-color:#0033ff;">
%%entries%%
</P>

Moonlit
10-29-2003, 03:11 PM
Is this really a code to make your own guestbook? How does it work? Do entries really get posted on the site?

chrishawthorne
10-29-2003, 08:09 PM
No, this does not make your own guestbook, it is with signmyguestbook.com I dont have enuff web space to have my own guestbook.

Thanks pbj

chrishawthorne
10-29-2003, 08:14 PM
Hey, here is my code as suggested by you
<HTML><HEAD><TITLE>Scrapbook Magic - Guestbook</TITLE></HEAD>
<BODY BGCOLOR="#3A99FF" TEXT="white" LINK="white" VLINK="white">

<CENTER>
<TABLE WIDTH=500><bgcolor "0033ff"><TD>
<FONT FACE="verdana, arial" size=2>

<p><P style="background-color:#0033ff;">
%%entries%%
</P>
<HR>
<P>Older Guestbook Entries: %%links_to_older_entries%%</P>

<HR><BLOCKQUOTE>
<P>Sign Our Guestbook Here:
<form method=post action="http://members.signmyguestbook.com/edit/sign">
Your Name: <input type=text name=signername size=18><BR>
Your E-mail: <input type=text name=email size=18><BR>
Your Homepage/Website: <input type=text name=url size=36 value="http://"><BR>
Your Message:<BR>
<textarea name="message" ROWS="10" COLS="36" wrap="virtual"></TEXTAREA><BR>
<input type=hidden name="username" value="scrapmagic">
<input type=submit value="Submit"></P>
</FORM></P>
</BLOCKQUOTE>

<P><A HREF="http://www.scrapbookmagic.org">Home</A></P>

</TD></TABLE> <FONT FACE="verdana, arial" size=2>
</BODY>
</HTML>

But, It only puts an outline around the area behind the text....do you know how to fix this? here is the page again: scrapmagic.signmyguestbook.com

deeply appreciated,
chris

duckgirl
10-30-2003, 02:17 AM
You want to change the color of the input boxes and textarea? This is what to use:

<form method=post action="http://members.signmyguestbook.com/edit/sign">
Your Name: <input type="text" name="signername" size="18" style="background-color:#0033ff;"> <BR>
Your E-mail: <input type="text" name="email" size="18" style="background-color:#0033ff;"><BR>
Your Homepage/Website: <input type="text" name="url" size="36" value="http://" style="background-color:#0033ff;"><BR>
Your Message:<BR>
<textarea name="message" ROWS="10" COLS="36" wrap="virtual" style="background-color:#0033ff;"></TEXTAREA><BR>
<input type=hidden name="username" value="scrapmagic">
<input type=submit value="Submit"></P>
</FORM>

pb&j
10-30-2003, 04:52 AM
looks like you would need access to the ASP that is working the entries portion.

chrishawthorne
11-04-2003, 01:48 PM
Ibelieve my guestbook place has a preset, I am going to change that, and by the way , thanks for the idea of changing the input area colors! I didnt even think of that, lol~! ;)