How to use background image for a page that work in Netscape..???

Hi there
Is there anyway around to use background image for a portal page that works well with netscape.
As I have used that but in coming in Netscape.
thanks
Rakesh

1) You post questions in the wrong forum. (As you title says this is a Swing question).
2) Not once in your last 10 postings have you ever bothered to reply to a posting to thank people for the help you have received.
I seriously doubt you well ever get answers in the future.

Similar Messages

  • How to change background image for each individual page in a template?

    I've been working for hours to try to figure out how to change the background image for each individual page in a template.  I have tried making a div in the body and adding a CSS and setting a background picture.  Unfortunately even after I made it editable all templated webpages changed.  I tried looking at different forum results which didn't really help me out. http://forums.adobe.com/message/2670005#2670005#2670005.  I've also tried embeding a CSS style on the webpage instead of the external CSS which again didn't work.  I'm not sure where to go from here.  Is there a good video that explains this clearly.  Please help.  Thanks.

    Adjust inline styles to suit your needs.
    <li><a tabindex="-1" href="giving/index.html" class="MenuBarItemSubmenu" style="background:none; color:#FFF; background: #000;">GIVING</a>
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Background Image for a Page

    Hi All,
    How to have a background image for a Portalpage? As Portlets are on the top of page,setting image in the Portal Style does not help.
    What's the wworkaround?
    Thanx

    I know,I can set the background image in the Page Template but in that case Portlets do not take that image as a background.Then It looks very awkward.
    How to solve this? Anybody at Oracle.
    Thanx

  • How to add background image for AdvancedDataGrid in Flash Builder 4

    I want to add a background image for the whole AdvancedDataGrid and
    Application. Can anyone tell me how to do that?
    Thank you.

    you can use css to customize skin of af:document. something similar to this
    af|document
      background-image: url("../../img/Bluehills.jpg");
    body {
      background: url("/img/body_bg.gif") repeat-x #E0E0E0;
    }if you are using Jdev release 2 then you can simply do this from Skin editor check this link for more info http://download.oracle.com/docs/cd/E18941_01/tutorials/jdtut_11r2_83/jdtut_11r2_83.html
    Edited by: Zeeshan BaiG on Jul 12, 2011 10:33 AM

  • How to add background image for a JInternalFrame Container?

    JInternalFrame fr=new JInternalFrame();
    //we added to desktop,
    Container c=fr.getContentPane();
    //how can we set background image for a internal frame??
    thanks,
    waiting,

    You can let the container's border draw the background image: caution: some will find this image disturbing.
    One nice thing about this solution is that you don't have to subclass any components.

  • How to use background image in ABAP -  webdynpro

    Hi,
    My requirement is like that.
    I want to display a background image. Over the background image i want to display my ALV list or report.
    How to display my personalized image in background.
    Please assist me....
    Thanks in Adv.

    hi ,
    this is not possible:
    refer these threads :
    Background Image
    I Assign Background Image to a Group (Ans by Thomas)
    Image as Background Image possible?
    as correctly pointed above and in this thread
    use your own stylesheets
    refer this thread for more  information on styles :
    EP 7 Portal stylesheet with WD ABAP
    to display image in the foreground :
    refer this WIKI
    https://wiki.sdn.sap.com/wiki/display/stage/DisplayEmployeeImageinABAPWebDynpro+Application
    regards,
    amit

  • Customizing firefox ... set my own background image for all pages I open in Internet.

    The idea is in using my own *.css file as primary for all sites, i open in firefox (or just my own background image). So that this image replaces the background for all sites I open in Internet.
    Maybe there is a file available in firefox 17.1 for this (maybe UserContent.css).
    Thanks a lot.

    Yes, you can use userContent.css for this, but it's simpler to use the Stylish extension instead.
    * http://kb.mozillazine.org/UserContent.css
    * https://addons.mozilla.org/firefox/addon/stylish/
    You would then use something like this:
    <pre><nowiki>@-moz-document url-prefix("http://"), url-prefix("https://") {
    body {
    background: url("file:///C:/My%20Pictures/Wallpaper/image.jpg") !important;
    color: black !important;
    *:not(body):not(input):not(textarea):not(button) {
    background: transparent !important;
    color: inherit !important;
    /* Unvisited link */
    a:link {
    color: blueviolet !important;
    /* Visited link */
    a:visited {
    color: indigo !important;
    /* Link with the mouse cursor over it */
    a:hover {
    color: lightblue !important;
    /* Clicked link */
    a:active {
    color: red !important;
    }</nowiki></pre>
    * To get the path of the image to use as the background, open it in Firefox and copy the URL from the address bar. Otherwise, keep in mind the protocol is file:/// that spaces must be replaced with %20 and that forward slashes must be used instead of backslashes (the latter is what Windows Explorer uses).
    * Remember to define appropriate colors for text and links, otherwise they will end up unreadable against your background image.
    * Even so, you can expect uneven results. Take this page for instance. “Post reply” isn't an actual button, but a link element styled to look like a button. There's no way to change these on all sites; they must be styled on a case-by-case basis. Another issue are images (e.g. the [https://support.cdn.mozilla.net/media/img/mozilla-support.png mozilla support] graphic here), which might end up unviewable against your background image.
    * If you need help writing CSS, see https://developer.mozilla.org/en-US/learn/css or http://forum.userstyles.org

  • In   AFBrandingBarTitle  how to use  background-image

    Tell me the exact use of background-image component in AFBrandingBarTitle with the line of code and full description

    Mayur Mitkari
    version -JDeveloper 11g Release1
    customizing skins through code
    try to add image from desktop into the skin , As a background image of Branding bar title
    Edited by: 942784 on Jul 9, 2012 11:13 PM
    Edited by: 942784 on Jul 9, 2012 11:14 PM

  • Background image for entire page

    dear sir,
    hectic day for me. I thought i am going to spend few more slieepless night. Forum releived a lot. Last doubt for a day is how to fix transparaent or glazed images as page-background or region back-ground.
    yours
    dr.s.raghunathan

    Using CSS:
    body {
      background: url(/i/logo.gif) fixed no-repeat center center;
    }or
    #region-static-id {
    background: url(/i/logo.gif) fixed no-repeat center center;
    with 'center center' replaced by any other positioning required...                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How To: Using Embedded Images for Drawing Fills

    I had some challenges making this seemingly simple feature work, so as I found no examples, I made an example on how to do this.  The key I found was using the “BitmapAsset” class which is compatible with posting our embedded image into BitmapData objects. That put things together.
    See the full narrative at:  http://digitalshowcase.biz/wordpress/?p=234
    Download the Flex Project here:  http://digitalshowcase.biz/flex/FillsWithEmbeddedImages.zip
    - Alan Gruskoff, Digital Showcase LLC

    >>says that this export technique does not work, it produces a low res screen version of the file.
    Are you certain the original files were any better?
    My preferred method of doing this works well, but it takes a few extra steps. I'd make a high-res PDF out of the PM file, then pick apart the PDF to extract the graphics. Are the graphics raster or vector? If they're raster, you can use Acrobat's Touch-up Object tool to open them in Photoshop. If they're vector, you can open the PDF in Illustrator and save out the graphics from there.
    HTH

  • How to keep background image for google in firefox?

    Please help me in keeping me an image as google backgroound.

    Please elaborate....... Are you talking about the background on google.com ? I think that feature has been removed and this isn't the correct place to discuss that.

  • Anyone knows how to use AirTurn (Pedal for turning pages) in ibooks on an iPad???

    I bougth an AirTurn pedal to turn pages in pdf-files in ibooks on my ipad. It doesn't work!!!
    Maybe it's not compatible with ibooks????
    Anders

    Here is their list of compatible apps and I do not see ibooks on it.
    http://airturn.com/ipad-apps/apps/ipad-apps

  • Color or background image of a page

    Hi all.
    We want to have multiple pages with different color or background image in our portal.
    Via the theme editor it is possible to assign either a color or an image on the background of the portal body but that only gives us one look to choose from.
    We have tried creating our own page layout with a specific background image but it does not work through the portal (it works fine doing a preview of the page though).
    Has any of you had the same challenge wanting different backgrounds on the portal pages and found a usable solution?
    PS!
    Portal version is EP6 NW04 SP12.
    Thanks in advance.
    Søren

    I think what you want is a nice clean strip that runs the width of the page that you can place tabs on top of. To give it a really professional look. We wanted the same effect but there is no easy way. I ended up making a background image for the page with a small stripe about an 1" from the top of the page that ran the width of the page. Then when the page is rendered, the tabs appear on top of the strip. That was our workaround.

  • Urgent!! Background image for masthead

    Dear all
    i was trying to put background image for Masthead. but it was not coming. Can anybody suggest me how to put background image for masthead.
    Pl suggest me
    rgds
    pradeep

    Hi sathya
    i gone through the links which u have given...
    i'm just pasting the message which nitsan has mentioned in that...
    <b>Hi
    Now i found that my problem occurs only for my local
    language.
    When I change the theme parameters (in English or in my local language)
    the changes will take affect only if I enter the portal
    in English.
    When I enter the portal in my local language not just that I will not see my changes, the presentation looks like no parameters where ever set in the theme.
    If any of u ever encountered something like that i'll be
    glad to learn from your experience.
    Nitsan</b>
    How is it possible...without changing the masthead par file...is there any way of doing it..without modifying par file..
    kindly suggest me
    rgds
    pradeep

  • How can I use a JPEG file as a background image for my vi in 8.5

    Im working on a vi that I plan on using as part of an alarm system.  I would like to use a JPEG file of my house as a background image for the vi, or possibly to just be displayed in a window on the control panel.  I have seen people use their own images before, but never looked at what this involved.
    Im trying to use the "read JPEG file" vi and the "draw flattened pixmap" vi to accomplish this.  The vi does run, but nothing shows on the front panel.  If I try to create an indicator from the "new picture" output of the "draw flattened pixmap" vi, I get an empty white window on the front panel.
    Any advice?
    Thanks
    Solved!
    Go to Solution.

    Guruthilak wrote:
    the earlier vi (using the JPEG) works fine. just increase the size of the picture control
    I figured this was the problem. And to the OP, I'm glad a bitmap worked, but no I didn't mean use any sort of LabVIEW programming at all. I meant open your image in Microsoft Paint, Press ctrl+A to select the whole thing. Then copy the image to the clipboard. Now select your front panel and press ctrl + v to paste it. No programming needed and the image is there. However, if you want to programmatically change it, you will need a picture control.
    CLA, LabVIEW Versions 2010-2013

Maybe you are looking for

  • Unable to load application configuration?

    All of a sudden, a couple of weeks ago, adobe flash stopped working in Internet Explorer 10. I've gone through all the steps I can find on the forum to try to get it to load. I even uninstalled it and the plug in for firefox, but it still wouldn't do

  • More than one condition for a formula

    HI We have another field that has to 5 values, and if the field is blank, we have to write on the report 'Missing'. I am not sure how one codes for this. If else if else etc?

  • Request still running

    Hi Expert, I did extract data for SAP HR Recruitment from source system (SAP R/3) to Cube in BW 7.0, when I ran the InfoPackage, the message always with status "Request still running" (detail message --> missing message: Number of send message) until

  • Capturing response.

    Hi All,          nice to meet you all once again. Here any one can please suggest me the best procedure regarding my scenario. i am handling the File-- to - Bapi scenario to post the data which i am getting in text file into ECC.          If it is an

  • Scaled (Reduced) Print HP Officejet Pro 8600

    Where is the setting in the Preferences dialog boxes to Scale print??  That is, I want to sent a print job to the computer, but I want it to print at something like 79% of full size. I have found the setting on the printers front LCD panel for settin