Quick easy question

Discussion in 'HTML & Website Design' started by Kel, Oct 24, 2007.

  1. #1
    Hi,

    I know this is really easy but I am absolutely clueless when it comes to this kinda stuff.

    Ive add my own logo to my SMF forum The Boredom Killer

    And I would like to get rid of the blue bits on either side and make it all white.

    Any help would be greatly appreciated!

    :D

    Kel
     
    Kel, Oct 24, 2007 IP
  2. SEOWOES

    SEOWOES Peon

    Messages:
    60
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Open up the style sheet in the CSS directory (http://theboredomkiller.com/Themes/default/style.css) and locate the following code:

    {
    background: url(images/catbg.jpg) #88A6C0 repeat-x;
    color: #ffffff;
    padding-left: 10px;
    padding-right: 10px;
    }
    .catbg2 , tr.catbg2 td
    {
    background: url(images/catbg2.jpg) #A1BFD9 repeat-x;
    color: #ffffff;
    padding-left: 10px;
    padding-right: 10px;
    }

    change to :

    {
    background: #fff;
    color: #000;
    padding-left: 10px;
    padding-right: 10px;
    }
    .catbg2 , tr.catbg2 td
    {
    background: #fff;
    color: #000;
    padding-left: 10px;
    padding-right: 10px;
    }


    That will get rid of the blue background.
     
    SEOWOES, Oct 24, 2007 IP
    Kel likes this.
  3. Kel

    Kel Well-Known Member

    Messages:
    1,612
    Likes Received:
    86
    Best Answers:
    0
    Trophy Points:
    185
    #3
    Mate your an absolute legend!

    Thankyou! :)

     
    Kel, Oct 24, 2007 IP