How to change the background color of the header section in a theme?

Hello

Currently im working on version 4.2.6 Apex... I want the same header background image in the theme traditional blue (20) for the theme of productivity Applications (26)...

I tried to replace the models of the traditional blue for productivity applications... background is changed, but the buttons are displayed as links...

Buttons and other features should enjoy in the theme productivity apps (26)... But I'm not getting this...

Thank you

Infantraj.A

Infantraj wrote:

Currently im working on version 4.2.6 Apex... I want the same header background image in the theme traditional blue (20) for the theme of productivity Applications (26)...

I tried to replace the models of the traditional blue for productivity applications... background is changed, but the buttons are displayed as links...

Buttons and other features should enjoy in the theme of productivity Applications (26)... But im not getting this...

1. create an external style sheet called t20-header-bg.css containing the following text replacing the rule:

header#uHeader {
  background: #6a9cda url(/i/themes/theme_20/headerBg.jpg) repeat-x !important;
}

2. download the stylesheet to your static files APEX repository.

3. create a copy of the theme of productivity Applications and switch the app to it.

4 refer to the style sheet in the file URL CSS property of each page templates in the new theme:

#WORKSPACE_IMAGES#t20-header-bg.css

Tags: Database

Similar Questions

  • How to change the header text in a sensitive presentation of HTML5

    I work in HR 11.0.4.291.

    This is probably a "duh" question, but I can't remember how to change the title text in the header of a sensitive layout. In the layout editor, I see that I can change the title, color and color of hover font, but where you change the actual text?

    Any help will be much appreciated.

    Can also be the title bar?

    See you soon... Rick

  • [Solved] How to change the header and footer height?

    Oh shit, that was fast! x)...

    I just got 2 see the leaders

    THX cu



    ____________________


    I tried to go to

    View > Display the header and footer

    and all the selected options, but nothing has changed.


    I know I need to move those:

    .. but here's a screenshot of what is displayed on my computer:

    You can see (if you're not blind) that there is no option to drag.

    How to make appear? I googled a lot, but found nothing.

    Thank you

    Chris

    Hi Chris,

    Go to the views-> click on "display rules". That should bring.

    Let me know if you have any question.

  • How to change a background color of a picture

    Hello

    I have a black image and whilte.

    Now, I want to change black to a grey color, I found on another image, while they mix.

    How can I do this?

    I tried Image > adjust colors but no luck.

    Levels adjustment layer and drag the black output slider to the right.  You can see below I put a pair of color sampler points, one on each background, so I could see exactly which setting I got a perfect match

    Click to enlarge the screenshot below to see all of this, if it's the hidden part

  • It is difficult to see how to change the color of the scrollbar in gray on gray background?

    It is difficult to see how to change the color of the scrollbar in gray on gray background?

    I think you should probably use an extension or theme to replace the default colors.

    If you are not interested in all the changes that might come with a new theme, is the next extension compatible with Linux?

    https://addons.Mozilla.org/firefox/addon/noiascrollbars/

  • How to change the background of the playlist window colors in iTunes

    The background color of my playlist 'window' in iTunes is black, which is difficult to read.  How to change the background of all the playlists to a light color.

    All the indications are that the selected background colors are random and cannot be changed. If someone knows a way to change them please let us know.

  • How to change the background color of string programmatically?

    How to change the background color of string programmatically?

    Are you talking about string indicator and control chain? If so, right-click on a control/indicator of string and select Create-> property Node-> text-> text-> BG Color colors. Change to write and a number of the color you want to use phone.

  • How to change the background color

    How to change the background color of the label field, how to do it thanks

    I can change the color of labelfield, but I want to change the background,

    How can I do this

    Thank you.

    I do not know mantaker do not want to forget the call to super...

    public void paint (Graphics gs) {}

    gs.setBackgroundColor (0x00FF0000); red background

    GS. Clear();

    Super.Paint (GS);

    }

  • How to change the background color dynamically on the page of the ofa

    How to change the background color dynamically on the page of the ofa

    Hello

    Can you please let me know the dynamic conditions to change the background color?

    Thank you

    Vincent

  • How to change the tooltip background color in Adobe Acrobat Reader? - ...

    How to change the tooltip background color in Adobe Acrobat Reader? - ...

    Hi xiaolaq75134938,

    I'm sorry, it is not possible to change the background color of the ToolTip, it is a design behavior.

    Kind regards
    Nicos

  • How to change the background color of the code written DW page but not the Web page...

    How to change the background color of the code written DW page but not the Web page...

    If you have DWCC2015, you can change to edit > Preferences > coloring Code and either choose a new theme (RecoGnEyes is the background dark code by default) or you can change it to what you want in the background field by default.

    2014 CC had no theme options, but you can change the background color in the same place.

    I think that some of the previous versions also had the option, but I don't have them on my machine to check.

  • How to change the background color of work in Photoshop CC 2015 plan

    How to change the background color of work in Photoshop CC 2015 plan

    Just tried to change these settings:

    Preferences-> Performance-> settings of the graphics processor-> advanced settings... The change of drawing in 'Normal' mode (mine was 'Basic'). Suddenly I can not change the background.

    Hope this works for you all also.

  • I NEED TO KNOW HOW TO CHANGE THE BACKGROUND COLOR OF MY INDEX FINGER. HTML PAGE

    I need to know how to change the background color of my page index.html on Dream weaver cs6.

    With CSS:

    {body

    background-color: #FF0000;

    }

    Nancy O.

  • How to change the background color of selection of the selected item in the drop-down box of choice?

    How to change the background color of selection of the selected item in the drop-down box of choice?

    By default, the selection background color like 'blue', but if I want it to be "yellow" for example, how should I do?

    Thank you

    The id is applied by (I think) the skin of the ChoiceBox class. You don't need to define.

    You must apply the css in an external style sheet. You can apply the external style sheet to any parent of the box of your choice, or on-site (the most usual way to do it).

    Example:

    import java.util.ArrayList;
    import java.util.List;
    
    import javafx.application.Application;
    import javafx.scene.Scene;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.layout.VBox;
    import javafx.stage.Stage;
    
    public class ChoiceBoxTest extends Application {
    
      @Override
      public void start(Stage primaryStage) throws Exception {
        primaryStage.setTitle("Example 2");
    
        final ChoiceBox choiceBox = new ChoiceBox<>();
    
        List tempResult = new ArrayList();
        for (int i = 0; i < 10; i++) {
          tempResult.add("Item " + i);
        }
        choiceBox.getItems().setAll(tempResult);
    
        VBox root = new VBox();
        root.getChildren().add(choiceBox);
        final Scene scene = new Scene(root, 300, 250);
        scene.getStylesheets().add("choiceBox.css");
        primaryStage.setScene(scene);
        primaryStage.show();
      }
    
      public static void main(String[] args) {
        launch(args);
      }
    
    }
    

    choiceBox.css:

    @CHARSET "UTF-8";
    #choice-box-menu-item:focused  {
     -fx-background-color: yellow ;
    }
    #choice-box-menu-item .label {
     -fx-text-fill: black ;
    }
    

    Post edited by: James_D

  • How to change the background color of some rows in a Datagrid?

    How to change the background color of some rows in a Datagrid?

    Hee is an excellent example:
    http://www.CFLEX.NET/showfiledetails.cfm?channelId=1&object=file&ObjectID=487

    Tracy

Maybe you are looking for

  • Toshiba virtual Store account Reset - 25362

    Plese reset my account STORE VIRTUAL TOSHIBA 25362

  • Router R6250 map shows TV but Samsung TV cannot find wireless connection

    It worked up to one week, other devices work - TV searches wireless but can't find anything

  • SMU-5186 exit RAID HDD-8265

    I have a chassis 1075 SMU SMU-8133 controller and SMU-5186 digitizer and HDD-8265 RAID connected via 8262 PCIe link. Basically, I need to broadcast the digitizer on the RAID output. In LabVIEW, we can use NEITHER-SCOPE to acquire the data of digitize

  • Create ASAM ODS hierarchy

    I am configuring an ASAM ODS server. I already create the server, export the configuration, and installed on the client computer. Then I am able to connect from a client computer to the server but when I try to run the script to the hierarchy that do

  • T400, a pixel stuck in fullscreen

    I just got my T400 2 days ago, now I find a stuck pixel (it's blue) in the center of the screen. Please tell me if I can get a replacement from lenovo. Thank you!