Need to change color of template

I directed a client to a template site and they picked a template that was a PSD (attached) and I turned it into a working website. Now they tell me they want it to be blue instead of the green that it is. I am not sure where to start. I guess I need go to each layer and change the color to a variation of blue. Is there a quick way to do this? I am not even sure how to change colors. Any help would be greatly appreciated.
Thanks!

You do not need to do this for each layer. Just the ones with the color elements of the webpage,and only those that are visible. (eyeball on in layers panel)
When you select the layer,then you go to the Image menu,Adjustments,and select Variations. You can interactively experiment until you find what's best.
My layer thumbnails are large so I can see at a glance what element I'm looking at. Use the Layers Panel menu to get to Panel Options and select Large Thumbnails.
Of course back up that template before loading into PS in case you need to do it over.
That should get you started.

Similar Messages

  • Need Help: Changing Colors in Template for Flyer

    I am trying to create a flyer from a template. I chose a template that has a colored border, but want to change the colors....I cannot figure out how to?
    Also,
    How to change the background color on a template too?
    Thanks so much for the help!!!
    PS: I am using the iWork, Pages...for this

    Hi Streater
    Welcome to the forum.
    There are 3 possiblilities:
    *1. It is locked* and shows small grey crosses on the corners
    +Menu > Arrange > Unlock ( option command l)+
    *2. It is grouped*
    +Menu > Arrange > Ungroup ( option shift command g)+
    *3. It is a scan or pdf*
    +Inspector > Metrics > File Info+
    Need to edit it outside Pages in a graphics program.
    If you can get at the object the colors and strokes etc are at:
    +Inspector > Graphic > Fill / Stroke+
    Double click any color fields to get the color picker.
    Peter

  • Pacman now needs to change color, but the types are incompatible ...

    Hi, my book sucks and I need your help again , Thanks In Advance !!!
    OK, now pacman can move in all directions and make a random move, but there needs to be a button to make him change color...
    I have come up with the following code but when I try to compile I get incompatible types for my new Pacmancolors...
    package pacman;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Autopacman extends Applet implements ActionListener
    boolean Packleur1;
    boolean Packleur2;
    boolean Packleur3;
    boolean Packleur4;
    boolean Packleur5;
    boolean Packleur6;
    int klikken = 1;
    int x = 200, y = 200; //beginpositie pacman
    int width = 50, height = 50; //formaat pacman
    int stap = 20; //standaard stapgrootte
    int stapVerander = 10; //stapgrootte wijziging
    int angleA = 5; //beginhoeken pacman
    int angleB = 345;
    public void init(){
    Button links = new Button("links"); //knoppen worden gemaakt en gelabeld
    Button rechts = new Button("rechts");
    Button omhoog = new Button("omhoog");
    Button omlaag = new Button("omlaag");
    Button harder = new Button("harder");
    Button zachter = new Button("zachter");
    Button random = new Button("Random actie");
    Button kleur = new Button("Kleur veranderen");
    links.addActionListener(this); //action events worden aan knoppen gekoppeld
    rechts.addActionListener(this);
    omhoog.addActionListener(this);
    omlaag.addActionListener(this);
    harder.addActionListener(this);
    zachter.addActionListener(this);
    random.addActionListener(this);
    kleur.addActionListener(this);
    add( links ); //knoppen worden op canvas gezet
    add( rechts );
    add( omhoog );
    add( omlaag );
    add( harder );
    add( zachter );
    add( random );
    add( kleur );
    public void paint(Graphics g){
    g.setColor( Color.black);
    g.drawLine( 0, 34, 600, 34 );
    Packleur1 = g.setColor( Color.yellow );
    Packleur2 = g.setColor( Color.red );
    Packleur3 = g.setColor( Color.blue );
    Packleur4 = g.setColor( Color.green );
    Packleur5 = g.setColor( Color.white );
    Packleur6 = g.setColor( Color.black );
    g.fillArc(x, y, width, height, angleA, angleB); //teken de pacman voor het eerst
    public void actionPerformed(ActionEvent e){
    String str = e.getActionCommand();
    if( str.equals("Kleur veranderen")){
    klikken++;
    if( klikken = 2 )
    {Packleur2 = true;}
    if( klikken = 3 )
    {Packleur3 = true;}
    if( klikken = 4 )
    {Packleur4 = true;}
    if( klikken = 5 )
    {Packleur5 = true;}
    if( klikken = 6 )
    {Packleur6 = true;}
    return false;
    if(klikken == 7)
    {klikken = 1;}
    if( str.equals("Random actie") ){       //Die stomme random functie
    int i = (int)(Math.random() * 10);
    switch(i){
    case 1: case 7 : str = "omlaag"; break;
    case 2: case 8 : str = "omhoog"; break;
    case 3: case 9 : str = "links"; break;
    case 4: case 10 : str = "rechts"; break;
    case 5: case 0: str = "harder"; break;
    case 6: str = "zachter"; break;}
    if( str.equals("harder") ){ stap = stap + stapVerander;} //stap wordt 10 groter
    if( str.equals("zachter") ){ stap = stap - stapVerander;} //stap wordt 10 kleiner
    if( stap < 0){stap = 1;} //Stapgrootte wordt nooit negatief of nul
    if( str.equals("links") ){ x -= stap;     //linksknop laat pacman links kijken en bewegen
    angleA = 185;
    angleB = 345;}
    if( str.equals("rechts") ){ x += stap;    //rechtsknop laat pacman rechts kijken en bewegen
    angleA = 5;
    angleB = 345;}
    if( str.equals("omhoog") ){ y -= stap;    //omhoogknop laat pacman omhoog kijken en bewegen
    angleA = 95;
    angleB = 345;}
    if( str.equals("omlaag") ){ y += stap;    //omlaagknop laat pacman omlaag kijken en bewegen
    angleA = 275;
    angleB = 345;}
    if( x <= 0){ x = 0;} // houdt de pacman tegen als hij links/rechts wil verdwijnen
    if( x > 550){ x = 550;}
    if( y <= 35){ y = 35;} // houdt de pacman tegen als hij boven/onder wil verdwijnen
    if( y > 550){ y = 550;}
    repaint(); // zet de pacman opnieuw op het canvas
    Can anyone help me with this?
    Thanks a bundle!
    Menno.

    Thanks a lot!
    Say if you want to see how it works just compile this source :
    /* Autopacman spelletje
    Menno Hagens, I108
    2001
    Autopacman.
    Maak via overerving van de klasse Packman uit week 4 een nieuwe klasse 'AutoPackman'.
    Deze klasse moet de volgende extra functionaliteit bevatten.
    De kleur van de Packman moet kunnen worden ingesteld.
    Er moet een methode komen die een willekeurige opdracht aan de Packman geeft.
    (naarLinks, naarRechts, gaSneller, gaTrager, etc.)
    Maak vervolgens een applet met vier Packmannetjes en ��n knop 'Beweeg'.
    Als je op deze knop drukt, moeten alle Packmannetjes ��n stap in een willekeurige
    richting doen.
    Programmeer dit efficient met arrays en loops.
    Als je na afloop nog moed hebt kun je de klasse en de applet zo aanpassen dat een
    spel ontstaat, waarbij een Packman die op de positie van een andere komt, de andere
    Packman opeet. Degene die overblijft heeft gewonnen.
    package pacman;
    import java.applet.*;
    import java.awt.*;
    import java.awt.event.*;
    public class Autopacman extends Applet implements ActionListener
    boolean Packleur1;
    boolean Packleur2;
    boolean Packleur3;
    boolean Packleur4;
    boolean Packleur5;
    boolean Packleur6;
    int klikken = 1;
    int x = 200, y = 200; //beginpositie pacman
    int width = 50, height = 50; //formaat pacman
    int stap = 20; //standaard stapgrootte
    int stapVerander = 10; //stapgrootte wijziging
    int angleA = 5; //beginhoeken pacman
    int angleB = 345;
    public void init(){
    Button links = new Button("links"); //knoppen worden gemaakt en gelabeld
    Button rechts = new Button("rechts");
    Button omhoog = new Button("omhoog");
    Button omlaag = new Button("omlaag");
    Button harder = new Button("harder");
    Button zachter = new Button("zachter");
    Button random = new Button("Random actie");
    Button kleur = new Button("Kleur veranderen");
    links.addActionListener(this); //action events worden aan knoppen gekoppeld
    rechts.addActionListener(this);
    omhoog.addActionListener(this);
    omlaag.addActionListener(this);
    harder.addActionListener(this);
    zachter.addActionListener(this);
    random.addActionListener(this);
    kleur.addActionListener(this);
    add( links ); //knoppen worden op canvas gezet
    add( rechts );
    add( omhoog );
    add( omlaag );
    add( harder );
    add( zachter );
    add( random );
    add( kleur );
    public void paint(Graphics g){
    g.setColor( Color.black);
    g.drawLine( 0, 34, 600, 34 );
    g.setColor( Color.yellow);
    if( klikken == 1 )
    {g.setColor(Color.yellow);}
    if( klikken == 2 )
    {g.setColor(Color.red);}
    if( klikken == 3 )
    {g.setColor(Color.blue);}
    if( klikken == 4 )
    {g.setColor(Color.black);}
    if( klikken == 5 )
    {g.setColor(Color.green);}
    if( klikken == 6 )
    {g.setColor(Color.white);}
    g.fillArc(x, y, width, height, angleA, angleB); //teken de pacman voor het eerst
    public void actionPerformed(ActionEvent e){
    String str = e.getActionCommand();
    if( str.equals("Kleur veranderen")){klikken++;}
    if(klikken == 7)
    {klikken = 1;}
    if( str.equals("Random actie") ){       //Die stomme random functie
    int i = (int)(Math.random() * 17);
    switch(i){
    case 1: case 7 : case 11: case 15 : str = "omlaag"; break;
    case 2: case 8 : case 12: case 16 : str = "omhoog"; break;
    case 3: case 9 : case 13: case 17 : str = "links"; break;
    case 4: case 10 : case 14: case 0 :str = "rechts"; break;
    case 5: str = "harder"; break;
    case 6: str = "zachter"; break;}
    if( str.equals("harder") ){ stap = stap + stapVerander;} //stap wordt 10 groter
    if( str.equals("zachter") ){ stap = stap - stapVerander;} //stap wordt 10 kleiner
    if( stap < 0){stap = 1;} //Stapgrootte wordt nooit negatief of nul
    if( str.equals("links") ){ x -= stap;     //linksknop laat pacman links kijken en bewegen
    angleA = 185;
    angleB = 345;}
    if( str.equals("rechts") ){ x += stap;    //rechtsknop laat pacman rechts kijken en bewegen
    angleA = 5;
    angleB = 345;}
    if( str.equals("omhoog") ){ y -= stap;    //omhoogknop laat pacman omhoog kijken en bewegen
    angleA = 95;
    angleB = 345;}
    if( str.equals("omlaag") ){ y += stap;    //omlaagknop laat pacman omlaag kijken en bewegen
    angleA = 275;
    angleB = 345;}
    if( x <= 0){ x = 0;} // houdt de pacman tegen als hij links/rechts wil verdwijnen
    if( x > 550){ x = 550;}
    if( y <= 35){ y = 35;} // houdt de pacman tegen als hij boven/onder wil verdwijnen
    if( y > 550){ y = 550;}
    repaint(); // zet de pacman opnieuw op het canvas

  • Need to change colors of lines in an Omniportlet Line Chart

    I am running Oracle Portal on a 10g Web server. I have created an Omniportlet and I am displaying data in a line chart. Is it possible for me to define the colours of the lines in the linechart?

    Hi I didn't changed colors in line chart but I managed to redesign lot of omniportlets.
    What you can do is to re-define CSS.
    Add an HTML portlet in your page with some CSS embedded.
    To catch wich class are to be re defined, I recommand you to use firefox with the extension Webdevelopper.
    Use the "Informations - display element information" functionnality to catch wich class are used for your chart.
    Then redefine those classes in your custom CSS.
    Hope that will help

  • Need help changing colors in a photo.

    I am trying to help some artists in mexico with their weaving. We are using elements 11 on vista 7. We would like to change colors in a piece to see if they are pleasing to the eye. Is it possible to change colors thoughout the whole piece at once? Using a brush to paint over each and every area would be so time consuming as their work is quite intricate. If this is not possible on Elements does Adobe have another sotware that would accomplish this task. Thank you for your time.

    I did not know I had to go to expert as i have never used this type of program before.The help was just telling me the tools were on the left side. I thank you for pointing me in the right direction. I have a feeling it will be easier for me to learn Chinese.

  • Changing colors in templates

    Hello.
    I am sure this is soooo easy and soooo obvious, but I am not seeing it. When using the Special Occasion template, there are some light blue boxes in the design. How can I change the color?
    Thanks.

    well suuuuuuuuuure it's easy! I mean, this is an Apple product, right?!?
    Okay, sarcasm induced from my own frustration at trying to change what SHOULD be simple, aside, this is what you need to do. Using a text editor (BBedit is my fav) navigtate to:
    /Applications/Aperture.app/Contents/Resources/Book Themes/Special Occasion/Hardcover/Graphics/BlueRect.plist
    change line 5 which says: <string>{242, 255, 244, 100}</string> to whatever you want. They are (in order) Red, Green, Blue, Value and you will need some tool like the Digital Color Meter or Apple Color picker to help you translate your pref'd color into the necessary values. I'd recommend saving a copy of the file in case things go sideways.
    Good luck, and in general anything you want to change can be done this way in the plist and other files in the packages.

  • Hacks for changing color on template?

    I would like to change the colors on these templates...is there a hack for this?
    The link is to the template I want to alter....
    http://farm4.static.flickr.com/3525/397791516724080b6594o.jpg

    There is no way to change the background color.
    We may just mimic this feature thru insertion of a colored shape moved to the background.
    Yvan KOENIG (VALLAURIS, France) dimanche 1 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Changing color on template chooser page

    In Pages, Id like to change the background color of the templates offered..?  I can change the content on the page but not the page color itself? Is it possible?

    There is no way to change the background color.
    We may just mimic this feature thru insertion of a colored shape moved to the background.
    Yvan KOENIG (VALLAURIS, France) dimanche 1 janvier 2012
    iMac 21”5, i7, 2.8 GHz, 12 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.2
    My iDisk is : http://public.me.com/koenigyvan
    Please : Search for questions similar to your own before submitting them to the community
    For iWork's applications dedicated to iOS, go to :
    https://discussions.apple.com/community/app_store/iwork_for_ios

  • Changing color in templates

    I'm brand new to Pages and I'd like to change the green background color in the heading of Education newsletter template. Can I do that? Thanks.

    Welcome to Apple Discussions
    You can do that easily. Click in the green box to select it (find a spot that doesn't select a banner or a picture) then in the Graphic Inspector click the drop down menu labeled Fill and choose Color Fill. Then click the colored box and choose your color.
    Walt

  • Need to change color of a symbol with a custom slider

    I'm pretty new to Flash and am not sure if it is the right app to try to do the following:
    I need to create an interactive piece. It's much more involved than this but fundamentally I need to create a slider on the left side of a window that is the color spectrum. I'll put a small triangular pointer beside it that can be moved up and down beside the spectrum. I want whatever color the slider is next to to show up in a symbol on the right. I've attached a simple image that illustrates it.
    So to restate it again, I'd slide the triangular symbol up and down beside the spectrum gradient on the left and whatever color it is pointing to would just show up in the symbol on the right, real time.
    Is this possible in Flash and if so I'd appreciate some guidance about how to start coding it? I'm not a programmer but do know and understand how code works fundamentally. I understand that Flash uses Action Script and I assume that with Action Script it's most likely possible to do this.
    Thanks,
    Rob

    http://www.flashandmath.com/basic/colors/
    http://kirill-poletaev.blogspot.com/2010/08/how-to-create-color-picker-with-sliders.html
    http://tutorials.flashmymind.com/2009/02/actionscript-3-color-picker/
    http://active.tutsplus.com/tutorials/actionscript/create-a-custom-color-picker-in-flash/

  • Photoshop CS 5 need help changing color from yellow to red

    Trying to change the background image of a webpage in photoshop CS 5.
    Can someone tutor me on the proper way to change the yellow on this graphic to the following RGB
    R153
    G11
    B25
    Thanks!

    Many options …
    In this case I would recommend to
    • select green channel (command-click it)
    • create a Solod Color Layer of the intended color
    • go into the Layer Mask (alt-click it in the Layers Panel) and use Image > Adjustments > Curves and hit Auto to get the brightest Pixels to white
    • use the Burn Tool set to Shadows to get the lower part to black (which corresponds to transparent)
    • create a black Solid Color Layer underneath that
    Other options would be a Hue Saturation Layer set to Yellows, a Solid Color Layer set to Blend Mode Color and with a Layer Mask etc.

  • Need to change color of one column's value depending on the other column

    Hi,
    i have a search form which displays two column values
    First column value's colour should be based on second column's value
    For example, if second column has values 'Active', 'Inactive' and 'Pending'
    If 'Active' , the first column value's color sholud be 'red'
    If 'inacitve, another color ....
    Thanks in advance,

    Hi!
    What we did was we added a column on the VO that returns kind of a css part (for example if a column value is 'Active' the value of this column should be "background-color:rgb(255,0,0);")
    Than you use something like this on your column:
    inlineStyle="#{row.StatusStyle}"where StatusStyle is the name of the column with "background-color:rgb(255,0,0);" value.
    The problem here can be that the background color doesn't cover the whole column but only the text in it (so if it is null, the color is default).
    If you want the whole column to be of this color you use something like this:
                                        <af:column ...>
                                          <afh:tableLayout ...>
                                            <afh:rowLayout ...>
                                              <afh:cellFormat inlineStyle="#{row.StatusStyle}" ...>
                                                <af:outputText ...>
                                                </af:outputText>
                                              </afh:cellFormat>
                                            </afh:rowLayout>
                                          </afh:tableLayout>
                                        </af:column>Basically you put another table layout inside a column instead just a outputText (or whatever control you use)
    Hope this is understandable and it helps :)
    It works for us.
    BB

  • How to change colors of designs

    I would love to be able to change colors of designs I make in Printshop. On my PC I could just highlight an object and choose a color and change it. The Mac is supposed to be the great "artistic" machine, yet it can't seem to do half the stuff my PC does and did for free. I was told to buy Photoshop which is hundreds of dollars. I don't need to do all that it offers, just need to change colors of a logo I've designed. Is there any way to do this on a Mac or do I need to go back to using my PC for graphic design projects?
    Annette

    You can't expect everything to be thrown in there, especially for free. Beyond the basics, pretty much anything else would have a personal preference aspect to it.
    GraphicConverter is one of the few commercial applications I have - definitely worth the money.
    For something free, there is also Gimp.

  • How to change colors in Color Ramps

    Hello,
    I would like to use Color Ramps, and I need to change colors. In help documents, it say that I juste have to right click in the icon and change what I want. But I tried all option and I can't do anything I want.
    Can you help me ??
    Thanks
    David

    Seems that I'm not the only one to have problems with color ramps...
    Nearly everything was explained in the on-line help. Nearly...
    "Complete the following steps to change the colors of a color ramp.
    1. Right-click the color ramp or a marker and select Marker Spacing»Arbitrary from the shortcut menu to switch the color ramp to arbitrary marker spacing.
    2. Use the Operating or Positioning tools to right-click the marker next to the color ramp and select Marker Color from the shortcut menu to change the color associated with a marker.
    3. Select the color you want from the color picker that appears."
    Additionnal hints :
    After switching to arbitrary marker spacing, suppress all intermediate markers (right click> Delete). Then adjust the colors of th
    e two remaining end markers. With some ramps, you will be obliged to move slighty the marker position to get a color update.
    If you need to insert intermediate colors, add intermediate markers (right click > Add). Using the text tool, type in the exact value associated with the marker. Select the color you want to associate with the marker.
    When finished, switch back to uniform marker spacing.
    Have fun...
    CC
    Chilly Charly    (aka CC)
             E-List Master - Kudos glutton - Press the yellow button on the left...        

  • Change color for

    I need to make links from keywords in PDF to files which is stored on harddisk.
    As for now I've done following
    1. Searched PDDoc with WordFinder for keyword
    2. Created link annotations from keyword quads
    3. Make filespecification and set it as launch action for all link annotations
    Now I need to change color for recognized keyword below link annotation. Could anybody help me with any hint?
    Thanks in advance.

    Look at the PDEdit APIs - that's what handles content.

Maybe you are looking for

  • Best BW datasource for consolidation in BPC 7.0NW

    BPC Gurus, I am working on Legal Consolidation. Which is the best datasource to be extracted from ECC New GL? 0FI_GL_20 is better or any other data source is better. The data required is in YTD format. The data is required only from leading ledger. P

  • Identify Old pricing conditions

    Hello, Can any one help. How to identify old conditions (Non Active) which are not using from last 3 years? I executed Table KONV in background also to find active conditions but its giving dump due to memory. is there anyway to find this?

  • How efficient is CS5.5 on a 7200 RPM HDD to edit HD footage?

    I presently have two Seagate Cheetah HD -146.8 GB internal 3.5" SAS 15Krpm 16MB in RAID 0. This is the recommended configuration from Adobe to manage uncompressed HD footage. If I install the Production Premium on a 7200 RPM HD, would it be the same

  • Fair usage policy violation blocking

    Dear Sir, This has reference to your e-mail dated Augut 17th 2014, regarding fair usage policy violation. This is to confirm that I am a law abiding citizen and I hereby also confirm that I have been using skype only for my personal, individual and n

  • Sales order assignment to WBS element

    Can somebody tell me Where a Sales order is assigned to a WBS element? I am aware that it is assigned to WBS element Field in Item details>>Account assignment Tab. But in this tab page on Sales Order screen, I am not able to see WBS Element field. I