1.

Solve : Alt Body Color??

Answer»

Is there an alternate way (in HTML) to set a background color from inside the BODY? I want to change the color of part of my AIM PROFILE PAGE. There is a place on the page for HTML, and i want to make that specific space LightBlue, i cant use:
Code: [Select]<body bgcolor="LightBlue">because this is a MODULE in the body, is there another way to force color?
use a table.
Code: [Select]<TABLE>
<TR>
<TD BGCOLOR="LightBlue"> <!--your html-->
</TD>
</TR>
</TABLE>



oh, of course, a table thank-youQuote from: EchoLdrWolf316 on September 06, 2008, 05:30:59 PM

oh, of course, a table thank-you

you might not even need the TR and TD elements at all, I just like being verbose. okay


Discussion

No Comment Found