PDA

View Full Version : Small code problem


:Judge:
03-07-2003, 03:01 PM
here is the code I had before I made any changes....<body bgcolor="#000000" text="#000000" id="all" leftmargin="10" topmargin="10" marginwidth="10" marginheight="10" link="#000020" vlink="#000020" alink="#000020">

Now I added a background image and all my text is now black, very bad since I have black background. here is what my code looks like now in the Page Layout Body Tag....<body bgcolor="#FFFFFF" background="images/NEW/mainbg.gif" bgproperties="fixed" text="#000000" id="all" leftmargin="10" topmargin="0" marginwidth="10" marginheight="10" link="#000020" vlink="#000020" alink="#000020">

Could someone tell me what I am doing wrong?

Kars10
03-07-2003, 03:03 PM
Just replace:

<body bgcolor="#FFFFFF" background="images/NEW/mainbg.gif" bgproperties="fixed" text="#000000" id="all" leftmargin="10" topmargin="0" marginwidth="10" marginheight="10" link="#000020" vlink="#000020" alink="#000020">

with

<body bgcolor="#FFFFFF" background="images/NEW/mainbg.gif" bgproperties="fixed" text="#FFFFFF" id="all" leftmargin="10" topmargin="0" marginwidth="10" marginheight="10" link="#000020" vlink="#000020" alink="#000020">


Note:
text="#FFFFFF" is the color of your text. You can change the value with whatever color you like... ;)

:Judge:
03-07-2003, 03:09 PM
Worked like a charm as I am sure you knew it would, thanks.

Kars10
03-07-2003, 03:13 PM
NP. Glad it works! :)