Login page - putting an image in the background

Hi,
Is there a way to put an image in the background of the login page...?
right now my login page is plain and white... I am looking for a way to put an image in the background to show some colors
Thanks

In APEX the presentational aspects of an application are controlled using a combination of (X)HTML and CSS via themes and templates. These determine the appearance of things like labels, and you're advised to become familiar with them to make best use of APEX.
There are 3 ways to include CSS in web pages. In this case the easiest is using an internal style sheet. Add a <tt>&lt;style&gt;</tt> element containing the required CSS rules to the HTML Header property in the APEX Page Attributes:
<style type="text/css">
  Your CSS rules go here
</style>

Similar Messages

  • Pages:  I am trying to put an image to the background of text.  When the image is selected I am unable to click on the Background option.  Help.

    Pages:  I am trying to put an image to the background of text.  When the image is selected I am unable to click on the Background option.  Help.

    Thanks for responding!!!  Please help.  In last years pages version it worked great!!!
    Pages: 5.1
    OSX: 10.9.1
    Template:  Just a Blank.  I am working on a document that I created last year.  Now just making edits.
    Ben

  • How do I put an image in the background of a JDesktop?

    I have made a program that has a JDesktop. Just need to know the coding to put an image in the background of the JDesktop. Any suggestion?

    Add a JLabel that holds a picture to it. Make sure it's in the back layer.

  • How to put an image in the popup help of a page item?

    I am using APEX 2.2. I want to put an image in the help text of a page input item.
    This is the help text:
    Some help text....
    <p><img src="&APP_IMAGES.auto_lov.jpg" /></p>This is rendered as:
    <p><img src="wwv_flow_file_mgr.get_file?p_security_group_id=0&p_flow_id=103&p_fname=auto_lov.jpg" /></p>As you can see, the application id is not returned.
    If I put exactly the same text in a html region, the image is correctly displayed:
    <p><img src="wwv_flow_file_mgr.get_file?p_security_group_id=844129086577364&p_flow_id=103&p_fname=auto_lov.jpg" />So, is it possible at all to put in image in the popup help text of a page item?

    I solved it by putting the jpg file in an images directory on the web server instead of in the database. Not really what I want, but it works.
    <p><img src="&IMAGE_PREFIX./apps/auto_lov.jpg" /></p>

  • How do I put a picture in the background on Pages

    I must be having a senior moment!   In the past I have made a poster in Pages and put a picture in the background and text over the top.
    I have just tried to do it again and can't for the life of me remember how to do it.   I do have a new version of Pages which has confused me slightly.
    Any help would be much appreciated.
    Kathy

    Menu > Arrange > Section Master > Move object to Section Master
    You also should still have Pages '09 still in your Applications/iWork folder
    Pages 5.5.3 has over 100 + features missing and is comparatively buggy.
    Peter

  • In the new Pages, how does one send an image to the background (and make it selectable)?

    How does one send an image to the background in the new Pages and how does one make it selectable?

    Also why don't TEXT to Speech short cuts established in system preferences work in the new Pages?
    I am confused (and not completely happy)

  • I can't figure out the Keynote title option. I'm a newbie so forgive my ignorance. I want to put an image in the swing arm, but I can't figure it out.

    I even tried opening in Motion and inserting it there, but when I bring it back to fc it's not there. I also want to change the background to an image or at least solid white. When I put an image in the Dropzone it doesn't show up. Any help would be GREATLY appreciated!

    To change the title background to use a clip in the drop zone, do just as Jim said.
    Also, place the clip that want to appear in the "swing arm" right below the title in the timeline.

  • Loading an image in the background and displaying it as it is loaded

    Hi,
    I'm writing an "image viewer" swing component, which should load an image in the background, and display it as it is loaded (for example each time a line of the image is loaded, display it)
    Is there a way to do this using JAI or any other api ?
    I guess i would need a way to check the loading progress from the EDT, get the loaded part of the image and display it. Am I right ? Is that possible ?
    Thanks,
    Nicolas

    In the video inspector set the Spatial Conform to "none". This will give tou the actual size of the image in the viewer. You can then use the transform controls to adjust the image to what you want to see.

  • Inserting Images in the Background of My Webdynpro Application

    Hi Experts,
    I need your Help. I am a novice to Webdynpro-ABAP and have a requirement  to embed
    Image in the background of my dynpro Application.Kindly suggest me the solution for the same .
    Thanks In advance for your help.

    Hi,
    Please read this [documentation|http://help.sap.com/saphelp_nw70/helpdata/en/46/89af7fbe4d429ee10000000a1553f7/frameset.htm]
    grtz,
    Koen
    Edited by: Koen Labie on Mar 12, 2008 10:30 AM

  • Security Exception when loading Image in the background?

    I've written a javafx app running in the browser. It loads a bunch of images in the background. It worked fine prior JRE 7 u11.
    However it is broken since JRE 7 u13. Images are not loaded correctly, failing with a SecurityException:
    java.security.AccessControlException: access denied ("java.lang.RuntimePermission" "modifyThreadGroup")
         at java.security.AccessControlContext.checkPermission(AccessControlContext.java:366)
         at java.security.AccessController.checkPermission(AccessController.java:560)
         at java.lang.SecurityManager.checkPermission(SecurityManager.java:549)
         at sun.plugin2.applet.SecurityManagerHelper.checkAccessHelper(Unknown Source)
         at sun.plugin2.applet.FXAppletSecurityManager.checkAccess(Unknown Source)
         at java.lang.ThreadGroup.checkAccess(ThreadGroup.java:315)
         at java.lang.Thread.init(Thread.java:376)
         at java.lang.Thread.<init>(Thread.java:446)
         at com.sun.javafx.runtime.async.BackgroundExecutor$1.newThread(BackgroundExecutor.java:52)
         at java.util.concurrent.ThreadPoolExecutor$Worker.<init>(ThreadPoolExecutor.java:610)
         at java.util.concurrent.ThreadPoolExecutor.addWorker(ThreadPoolExecutor.java:924)
         at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:1371)
         at com.sun.javafx.runtime.async.AbstractAsyncOperation.start(AbstractAsyncOperation.java:107)
         at javafx.scene.image.Image$ImageTask.start(Image.java:917)
         at javafx.scene.image.Image.cycleTasks(Image.java:798)
         at javafx.scene.image.Image.access$200(Image.java:107)
         at javafx.scene.image.Image$ImageTask.onCompletion(Image.java:903)
         at javafx.scene.image.Image$ImageTask.onCompletion(Image.java:879)
         at com.sun.javafx.runtime.async.AbstractAsyncOperation$2.run(AbstractAsyncOperation.java:70)
         at com.sun.javafx.application.PlatformImpl$4$1.run(PlatformImpl.java:179)
         at com.sun.javafx.application.PlatformImpl$4$1.run(PlatformImpl.java:176)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sun.javafx.application.PlatformImpl$4.run(PlatformImpl.java:176)
         at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:76)
         at com.sun.glass.ui.gtk.GtkApplication._runLoop(Native Method)
         at com.sun.glass.ui.gtk.GtkApplication$3$1.run(GtkApplication.java:82)
         at java.lang.Thread.run(Thread.java:722)If I dont' load the Image in the background -> it's working. Is it a bug?

    It's probably worth filing a bug report on this.
    https://forums.oracle.com/forums/ann.jspa?annID=1713 "Announcement: How to file a bug or submit a feature request"

  • How do you set a image in the background of a JTextfield?

    How do you set a image in the background of a JTextfield? Any ideas?

    You can't thats why it is called textfield!!!
    Take a look at JScrollPane API for this

  • How do you set an image into the background of a JPanel or JFrame?

    How do you set an image into the background of a JPanel or JFrame?

    Something like this, Ive thrown in an ImageIcon on a
    button too for good measure.
    import java.awt.*;
    import javax.swing.*;
    public class JFrameImage extends JFrame {
    public JFrameImage() {
    Container c    = getContentPane();
    JPanel panel = new JPanel(){
                 public void paintComponent(Graphics g)     {
    ImageIcon img = new
    = new ImageIcon("background.jpg");
                      g.drawImage(img.getImage(), 0, 0, null);
                      super.paintComponent(g);
            panel.setOpaque(false);
    ImageIcon icon = new ImageIcon("onButton.jpg");
    JButton button = new JButton(icon);
    panel.add(button);
    c.add(panel);
    public static void main(String[] args) {
    JFrameImage frame = new JFrameImage();
    frame.setSize(200,200);
    frame.setVisible(true);
    Going totally fancy pants
    ImageIcon bigImage = new ImageIcon(bgImage.getImage().getScaledInstance(getWidth(), getHeight(),Image.SCALE_REPLICATE));
    g.drawImage(bigImage.getImage(), 0, 0, this); Will scale the image to the size of the panel
    whereas
    for (int y = 0; y  < getHeight(); y = y + image.getHeight(null))
    for (int x = 0; x< getWidth(); x = x + image.getWidth(null))
    g.drawImage(image, x, y, this); Will give a tiled effect
    Try tiling with an animated gif and bring your processor to a standstill.

  • I saw Corey Barker do a demo where he extracted an image from the background, then cleaned up the edge with a process that allowed him to de-fringe it.  I can't remember how he did it. And I can't find it.  Help!

    I saw Corey Barker do a demo a few weeks ago where he extracted an image from the background, then used a technique I was not familiar with to clean it up. You selected the area, then did something that involved going either to edit or select, then there was a dialog box that allowed you to dial it in, depending on the color background you were removing.  I can't find this anywhere. Can't remember.  It's driving me crazy!  If someone can help me find this, I would be very glad and grateful. Thanks!  Laura

    In technical support, sometimes you have to make educated guesses. I'm sorry that you were offended.
    iTunes does prompt when it is going to erase a device, and the message is clear.
    She said in her message that she was able to successfully sync the old ipad. This indicated to me that itunes wiping the data was not an issue, because either it had been setup at the apple store (in which case it doesn't actually wipe the ipad despite saying it will*) (*based on a single case I saw), or because the itunes media folder was migrated.
    Furthermore, my solution was to tell her how to backup her ipad (by either doing it manually, or as a last resort, by deleting the corrupt backup -- that she couldn't access anyway.)
    I got that last part of the instructions from the "Taking Control of your iphone" book which I found samples of when I did a google search for "corrupted backup itunes".
    She marked this as a solution, so it worked for her.

  • Image in the Background?

    I want to create a full-screen Mac projector that is 800x600. It turns out that the stage occupies just a small area in the center of the screen with a simple color dominating the remaining area of the screen. My idea was to place an image in the background instead os just a simple color. Or maybe a tile like in webpages.
    Does anybody know if it's possible to use an image that goes beyond the stage borders instead of just a simple color?

    That didn't solve it

  • Satellite Pro L40: black screen but faint image in the background

    Satellite Pro L40-17H (PSL4BE-00T005EN)
    Hello,
    I would appreciate some help with the following problem:
    SYMPTOMS: Screen is black, but I can see that there is a faint image in the background.
    I get a good image in external monitor.
    I suspect, _among others_, that there may be a faulty *lid sensor/switch*, but I have been unable to locate it, although I have disassembled the unit.
    If somebody knows, please let me have the exact *location* where I should look for the switch.
    Thank you

    Thank you RandyRoberts
    You are probably right, it is likely that the inverter is faulty, or it might be a bad lamp.
    Nevertheless, I cannot exclude the possibility that there is a bad or stuck lid switch. That is why I insist to check that one out as well.
    I would still like to know where the lid switch is located on the L40.
    Thanks and regards.

Maybe you are looking for

  • What's wrong with my iPod Touch 4?

    Okay, so something's wrong with my iPod. I had other two issues, well, I still have, that led to this problem. My iPod wont turn sideways, even though the Portrait orientation isn't on, and an "Undo Typing" popup keeps appearing on my screen even tho

  • I am work on fluid grid web site in DW CC but my nav button link is not work

    html code <div id="div1" class="fluid" >            <ul id="ul">             <li id="li"><a href="who_we_are.html">who we are</a>                       <ul>                 <li id="li"><a href="team.html">team</a></li>                       <li id="l

  • Selling & Distribution  Overheads  Allocation on basis of Qty sold

    Dear Experts, Client wants to allocate selling and distribution overheads based on the quantity of the goods sold. Which is best way to absorb these costs Eg - Company Code A - Cost Center MktA incurred $1000, this cost center deals in FG Product A S

  • IPhoto library missing after crash

    Had just launched iPhoto to tweak some photos and it froze on me. Attempted a force-quit and it froze my PowerBook. Forced a restart and when i re-launched iPhoto, it reverted to a fresh, newly-launched version; i.e., no library! This was accompanied

  • Use PowerShell to display the properties of an App Pool

    Hi I'm writing a script to deploy web applications from the TFS server to the web servers, along with creating the App Pools and such in IIS.  I need to know if there is a way that I can list the value of important properties of an App Pool, such as