Return-Path: Delivered-To: apmail-forrest-user-archive@www.apache.org Received: (qmail 52595 invoked from network); 9 Jul 2005 08:16:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Jul 2005 08:16:56 -0000 Received: (qmail 4816 invoked by uid 500); 9 Jul 2005 08:16:55 -0000 Delivered-To: apmail-forrest-user-archive@forrest.apache.org Received: (qmail 4761 invoked by uid 500); 9 Jul 2005 08:16:54 -0000 Mailing-List: contact user-help@forrest.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: user@forrest.apache.org List-Id: Delivered-To: mailing list user@forrest.apache.org Received: (qmail 4746 invoked by uid 99); 9 Jul 2005 08:16:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Jul 2005 01:16:54 -0700 X-ASF-Spam-Status: No, hits=1.8 required=10.0 tests=DNS_FROM_RFC_ABUSE,DNS_FROM_RFC_POST X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [212.95.66.37] (HELO smtp.evc.net) (212.95.66.37) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 Jul 2005 01:16:52 -0700 Received: from smtp-in.evc.net (localhost.localdomain [127.0.0.1]) by smtp.evc.net (Postfix) with ESMTP id 301F93FE8F for ; Sat, 9 Jul 2005 10:16:52 +0200 (CEST) Received: from [212.95.74.131] (ip-74-131.evc.net [212.95.74.131]) by smtp-in.evc.net (Postfix) with ESMTP id 12023116EEC for ; Sat, 9 Jul 2005 10:16:51 +0200 (CEST) Message-ID: <42CF87F2.2000801@evc.net> Date: Sat, 09 Jul 2005 10:16:50 +0200 From: Maurice Lanselle User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: fr, en MIME-Version: 1.0 To: user@forrest.apache.org Subject: Re: change color of page.gif and current.gif in forrest 0.6 pelt menu References: <80d298bc05070723314a5d37c0@mail.gmail.com> In-Reply-To: <80d298bc05070723314a5d37c0@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: clean on smtp.evc.net X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Rasik Pandey said the following on 08/07/2005 08:31: >Hello, >I was wondering if there was a simple way to change the color of the >small gifs for each item in the menu under the pelt skin of forrest >0.6. It seems as if the page.gif is represented in two colors, a light >blue in the "menu" and a light grey in the "mini-toc". Is this a >simple css change in skinconf.xml. > >Thanks, >Rus > > > I think it is the change in background color that makes the two uses of these images look like different colors, but page.gif is only one color in both cases. To see the menu with a white background (temporarily) I put #menu { background-color: #FFFFFF;} in profile.css (as the last background-color for this class). One could achieve the same thing via skinconf.xml by setting If you have other images you prefer, you can indeed set them in skinconf.xml using the "extra-css" section. For instance, to use "label.gif" (the little open twisty used to show open submenus) instead of "current.gif" I inserted: #menu .menuitem { background-image: url('images/page.gif'); background-repeat: no-repeat; background-position: center left; margin-left: 10px; } #menu .menupage { margin: 5px 0px 5px 10px; padding: 0px 3px 0px 12px; background-image: url('images/label.gif'); background-repeat: no-repeat; background-position: top left; } .minitoc { list-style-image: url('images/label.gif'); font-weight: normal; }