Re: Styleguide: CSS guide for Coppermine's stylesheet Re: Styleguide: CSS guide for Coppermine's stylesheet
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

Re: Styleguide: CSS guide for Coppermine's stylesheet

Started by magicmonkey, July 19, 2005, 09:09:28 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

magicmonkey

I know this is probably the wrong place to post this but I can't seem to make a new thread! I am having a few problems updating the classic theme to fit the rest of my site, all I want to do is change the background colour to white rather than greak and change the outside border to white rather than black, every time I try to change anything in the template.htm file all of the style formatting dissapears. In case you haven't guessed I'm a bit of an ameruer here and need a bit of help!

stwief

as far as I can tell, you don't have to adjust the template.html file. The changes you want to make have to be made in the style.css file.

on top of this page, you find the following code:
body {
        font-family : Verdana, Arial, Helvetica, sans-serif;
        font-size: 12px;
        background : #F7F7F7 ;
        color : Black;
        margin: 0px;
}


the background-part (background : #F7F7F7 ;) tells what the background colour should be.
In order to change this colour into white, you should change the code into:
background : #FFFFFF ;

hope this is what you needed?