Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Alt Body Color?  (Read 3530 times)

0 Members and 1 Guest are viewing this topic.

EchoLdrWolf316

    Topic Starter


    Intermediate

  • Don't worry, Javascript is just Flash on speeeeed.
    Alt Body Color?
    « on: September 06, 2008, 05:26:09 PM »
    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?

    BC_Programmer


      Mastermind
    • Typing is no substitute for thinking.
    • Thanked: 1140
      • Yes
      • Yes
      • BC-Programming.com
    • Certifications: List
    • Computer: Specs
    • Experience: Beginner
    • OS: Windows 11
    Re: Alt Body Color?
    « Reply #1 on: September 06, 2008, 05:28:04 PM »
    use a table.
    Code: [Select]
    <TABLE>
    <TR>
    <TD BGCOLOR="LightBlue"> <!--your html-->
    </TD>
    </TR>
    </TABLE>



    I was trying to dereference Null Pointers before it was cool.

    EchoLdrWolf316

      Topic Starter


      Intermediate

    • Don't worry, Javascript is just Flash on speeeeed.
      Re: Alt Body Color?
      « Reply #2 on: September 06, 2008, 05:30:59 PM »
      oh, of course, a table  :P  ::) thank-you

      BC_Programmer


        Mastermind
      • Typing is no substitute for thinking.
      • Thanked: 1140
        • Yes
        • Yes
        • BC-Programming.com
      • Certifications: List
      • Computer: Specs
      • Experience: Beginner
      • OS: Windows 11
      Re: Alt Body Color?
      « Reply #3 on: September 06, 2008, 06:24:25 PM »
      oh, of course, a table  :P  ::) thank-you

      you might not even need the TR and TD elements at all, I just like being verbose. :)
      I was trying to dereference Null Pointers before it was cool.

      EchoLdrWolf316

        Topic Starter


        Intermediate

      • Don't worry, Javascript is just Flash on speeeeed.
        Re: Alt Body Color?
        « Reply #4 on: September 06, 2008, 07:00:24 PM »
        okay