coppermine-gallery.com/forum

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: merebel on June 26, 2007, 04:17:23 AM

Title: Footer Problems
Post by: merebel on June 26, 2007, 04:17:23 AM
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
Title: Re: Footer Problems
Post by: Joachim Müller 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.
Title: Re: Footer Problems
Post by: merebel on June 26, 2007, 06:14:45 PM
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
Title: Re: Footer Problems
Post by: Joachim Müller on June 27, 2007, 08:13:19 AM
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.
Title: Re: Footer Problems
Post by: merebel on June 27, 2007, 06:33:11 PM
Thank you very much that fixed everything

Keith