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! Kel
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.