• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HELP: with html fill color

FrugalGuy

Senior member
I know this has to be simple, but I can't find the script or can't get the script to work...

I just want a black background with white text in html script. Any body know how to do this?
 
thanks...for some reason, the program won't let me use the bgcolor tags. So, I guess I need to add a border to the white text and then fill it with black. Any help with that
 
Originally posted by: FrugalGuy
thanks...for some reason, the program won't let me use the bgcolor tags. So, I guess I need to add a border to the white text and then fill it with black. Any help with that

what program ar eyou using?!?! have you ever programmed HTML?

try using a table.

<table width = 100% height = 100% bgcolor = black>
<tr><td>
<font color = white>WHITE TEXT</font>
</td></tr>
</table>

that'll create a table which covers 100% of the screen with white text, top left of the screen.

although bgcolor will definitely work... once again the program you're using probably sucks.
 
Back
Top