Submit Your Article Forum Rules

Results 1 to 3 of 3

Thread: Color Question for My Background.

  1. #1
    Senior Member watto's Avatar
    Join Date
    Jun 2004
    Posts
    848

    Color Question for My Background.

    Can someone ell me why the background on my homepage is white and on all other pages it is grey? I want the home page to also have a grey background, however I can not find the code.

    All help is gretly appreciated.

    watto
    Peter Watson is the founder and CEO of Business Trader - Buying and Selling Businesses in Australia.

  2. #2
    WebProWorld MVP Dubbya's Avatar
    Join Date
    Nov 2006
    Location
    Steinbach, Manitoba
    Posts
    1,323

    Re: Color Question for My Background.

    I'm guessing that you're referring to the australiansmallbusiness.net site.

    There are a few things between your style tags that need to be fixed.

    You neglected to add the ound sign "#" before the hex code specifying your font color. It should read "color:#222222"

    Additionally, it's probably better to specify the page background color by applying the style to the body tag instead of in a class called ".main".

    Inside the style for the body tag, add "background-color: #F4F4F4;" Save the file and reload the page in your browsero

    HTML Code:
    <style type="text/css">
    
    body {  color: 222222;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 10px;
            }
    
    
    .box{
         width: 750px;
         text-align: left;
         border: 1px solid #6BB300;
             background: #FFFFFF;
    }
    .main{
         text-align: left;
         border: 1px solid #6BB300;
             background: #F4F4F4;
    }
    
    </style>

  3. #3
    Senior Member watto's Avatar
    Join Date
    Jun 2004
    Posts
    848

    Re: Color Question for My Background.

    Thanks Dubbya!
    Peter Watson is the founder and CEO of Business Trader - Buying and Selling Businesses in Australia.

Similar Threads

  1. Please help Web Ceo says same text color as background
    By illbeatz in forum Graphics & Design Discussion Forum
    Replies: 14
    Last Post: 11-05-2006, 09:04 AM
  2. Please help Web Ceo says same text color as background
    By illbeatz in forum Web Programming Discussion Forum
    Replies: 1
    Last Post: 10-27-2006, 01:01 PM
  3. color temperature question
    By Faglork in forum Graphics & Design Discussion Forum
    Replies: 7
    Last Post: 04-04-2005, 07:35 PM
  4. Background Image question
    By ajpaulus in forum Graphics & Design Discussion Forum
    Replies: 9
    Last Post: 08-11-2004, 05:41 PM
  5. E-Mail Newsletter Background Color
    By OneMoreBite in forum WebProWorld: Guidelines/Announcements/Suggestions
    Replies: 5
    Last Post: 12-13-2003, 08:09 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •