Search Help:  
 
Enter keywords to search help.

Can I change the colors of my text and background?

Yes. In order to change the color of your text and background, you need to be familiar with a very important tag in HTML. This tag is called the body tag, and it looks like this: <BODY>

The body tag is located in the basic format of every HTML page:

<HTML>
<HEAD>
<TITLE>Your Page Title</TITLE>
</HEAD>
<BODY>
Your page content
</BODY>
</HTML>

This is the exact format you will see when you edit your page in our HTML editor.

In order to change the color of your text and background, you should highlight and then delete the <BODY> tag and replace it with the following tag:

<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" ALINK="#FF0000" VLINK="#009900">

You may notice that the <BODY> tag looks quite a bit different now. This is because we have added four more elements to this tag.

  1. This element, BGCOLOR="#FFFFFF," controls the background color of your page. You can alter the color of your background by changing the hexadecimal color values. These values are represented by the numbers/letters #FFFFFF.
  2. This element, TEXT="#000000," controls the color of the text on the whole page. Once again the numbers/letters #000000 represent a hexadecimal color.
  3. This element, LINK="#0000FF," controls the color of the unvisited links on the whole page. Once again the numbers/letters #0000FF represent a hexadecimal color.
  4. This element, ALINK="#FF0000," controls the color the links will change to, once a user clicks on the link. Once again the numbers/letters #FF0000 represent a hexadecimal color.
  5. This element, VLINK="#009900," controls the color of the visited links on the whole page. Once again the numbers/letters #009900 represent a hexadecimal color.

Learn more about changing your hexadecimal color combinations.

Was this article helpful?

Yes   No
Click to contact Customer Care for further assistance.