Footer Problems Footer Problems
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Footer Problems

Started by merebel, June 26, 2007, 04:17:23 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

merebel

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

Joachim Müller

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.

merebel

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

Joachim Müller

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.

merebel

Thank you very much that fixed everything

Keith