Revision [812]
The oldest known version of this page was edited on 2010-03-30 13:31:01 by RyanHaudenschiltBecause of the way Family Connections was designed prior to FCMS 2.0 you cannot simply overwrite the old logo with a new logo and expect it to work properly. You also have to edit the CSS file for the theme you are changing.
The example below shows you how to change the logo for the default theme.
Step 1. Upload the new logo to the themes/images/default/ directory (you should probably rename it something other than logo.gif).
Step 2. Edit the default.css theme, make sure to change the url location of your new logo, and also the width and height of that image.
default.css (line 53)
- #logo {
- float: left;
- background: transparent url("images/default/YourNewLogoName.gif") no-repeat 0 0;
- display: block;
- width: 250px; // change the width to match YourNewLogoName.gif
- height: 75px; // change the height to match YourNewLogoName.gif
- overflow: hidden;
- text-indent: -9000px;
- }
