I need to remove the grey footer at the bottom of the page or change it to a black one but can't find it.
my site is http://www.alderaanbase.com/cpg1410/index.php
Thanks
Keith
I can't see a grey footer, nor can I see the "Powered by Coppermine" tag - it's obscured by printing it in black on a black background. Restore it if you need help.
Quote from: GauGau on June 26, 2007, 08:23:23 AM
I can't see a grey footer, nor can I see the "Powered by Coppermine" tag - it's obscured by printing it in black on a black background. Restore it if you need help.
Fixed the color so it can bee seen now and the grey area that I am seeing is right below the Powered by Coppermine area
Keith
First of all, get rid of the surplus, invalid reference to an additional stylesheet: edit http://www.alderaanbase.com/cpg1410/themes/classic/template.html, find<link href="style.css" rel="stylesheet" type="text/css" />
and delete that line.
Then edit http://www.alderaanbase.com/cpg1410/themes/classic/style.css and change the background property for the body tag: findbody {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
background : #CCCCCC;
color : Black;
margin: 0px;
}
and replace withbody {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
background : #000000;
color : white;
margin: 0px;
}
Use the Web Developer Toolbar for Firefox to find out about such things.
Thank you very much that fixed everything
Keith