Changes to \themes\theme_20\theme_3_1.css have no effect on my app

Hi,
I am trying to change the background color of my application by changing the my stylesheet. It has no effect whatsoever.
If I rename the css-directory from "theme_20" to "theme_less", my app looks completely confused, so I know that I must be looking at the right file(s).
I use Firefox and the APEX version is 3.1.0.00.32.
What am I missing? Ideas, anyone?
Thanks!
Remco

It's recommended not to modify the built-in themes. Your changes could get overwritten and lost by a future APEX upgrade, or lead to unwanted customisation of other apps. Make a copy of the theme and customise that. If accessing CSS from the server filesystem, it's preferable to put your theme files in another location from that referenced by /i/. Another virtual directory can be set up in the DAD.
Use the Firefox Web Developer or Firebug extensions to determine what style sheets are being used. Firefox can cache CSS quite aggressively, so check you're not getting stale versions by loading style sheets on their own using Web Developer or entering their URL in the address bar. If the old version is shown then try refreshing.

Similar Messages

  • Change Header Font Color Using CSS doesn't effect

    Hi guys,
    I tried to set the header forecolor in "red" using CSS but no effect.
    Any alternative solution?
    Thanks.
    Criz

    Criz,
    We cannot use the color names in CSS you have to use predefined names
    For Red Header use OraErrorHeader, for more font styles check.
    http://download.oracle.com/tech/blaf/specs/textstandards.html
    Thanks,
    With regards,
    Kali.
    OSSI.

  • How I can change the theme using with css

    How I can change the flex theme and images  using with css ?

    Bonjour ixixix2006
    Perhaps you will find your bonheur here:
    http://nonlinear.openspark.com/tips/scripts/localisation/index.htm
    Cheers,
    James

  • Resizing a TIFF File: Overwriting TIFFFields does not have any effect

    Hi,
    I have some TIFF files that I am receiving through a FAX server. Some of the TIFF files have an image length of *1077 pixels and a DPI of 200x98*. These images open fine in generic viewers like Microsoft Image Viewer and IrfanView and the image size in the information dialog shows up fine (1752x2158). But when I open the images in a LeadTools viewer (that works off TIFF Header tags), the image appears stretched out.
    I am trying to re-sample the image to make it a true Letter size image (1700x2200) with resolution of 200x200. I have been able to set the TAG_X_RESOLUTION and TAG_Y_RESOLUTION which I can see changed in the Tag Viewer. But changing the following tags does not have any effect on the resulting image:
    TAG_IMAGE_WIDTH
    TAG_IMAGE_LENGTH
    TAG_ROWS_PER_STRIP
    the following is the code I am using, I have tried all possible ways (removing TIFFFeilds and then adding them), but it has no effect. The last options is to use a Print Driver from within Java and Print the image (that re-samples it into a 8.5x11 inch image with 200 DPI). At this point, I am just curious about writing TIFFFields with images. Any ideas are appreciated:
    Thanks,
    Manuj
    +
    import java.io.BufferedOutputStream;
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.util.Iterator;
    import javax.imageio.IIOImage;
    import javax.imageio.ImageIO;
    import javax.imageio.ImageReader;
    import javax.imageio.ImageWriter;
    import javax.imageio.metadata.IIOMetadata;
    import javax.imageio.stream.ImageInputStream;
    import javax.imageio.stream.ImageOutputStream;
    import org.w3c.dom.NamedNodeMap;
    import org.w3c.dom.Node;
    import com.sun.media.imageio.plugins.tiff.BaselineTIFFTagSet;
    import com.sun.media.imageio.plugins.tiff.TIFFDirectory;
    import com.sun.media.imageio.plugins.tiff.TIFFField;
    import com.sun.media.imageio.plugins.tiff.TIFFImageWriteParam;
    import com.sun.media.imageio.plugins.tiff.TIFFTag;
    import com.sun.media.imageioimpl.plugins.tiff.TIFFT6Compressor;
                   //set the input stream for to the reader
                   tiffFileReader.setInput(tiffFileInputStream);     
                   //define the writer
                   ImageWriter tiffWriter = (ImageWriter) ImageIO.getImageWritersByMIMEType("image/tiff").next();
                   //define the writer param with compression;
                   TIFFImageWriteParam writeParam = (TIFFImageWriteParam)tiffWriter.getDefaultWriteParam();
                   TIFFT6Compressor compressor = new TIFFT6Compressor();
                   writeParam.setCompressionMode(TIFFImageWriteParam.MODE_EXPLICIT);
                   writeParam.setCompressionType(compressor.getCompressionType());
                   writeParam.setTIFFCompressor(compressor);
                   writeParam.setCompressionQuality(Float.parseFloat("1"));
    // get the metaData
                   IIOMetadata imageMetadata = null;
                   IIOImage testImage = null;
                   for(int i=0;i<filePageCount;i++)
                        imageMetadata = tiffFileReader.getImageMetadata(i);
                        TIFFDirectory dir = TIFFDirectory.createFromMetadata(imageMetadata);
              // Get {X,Y}Resolution tags.
              BaselineTIFFTagSet base = BaselineTIFFTagSet.getInstance();
              TIFFTag tagXRes = base.getTag(BaselineTIFFTagSet.TAG_X_RESOLUTION);
              TIFFTag tagYRes = base.getTag(BaselineTIFFTagSet.TAG_Y_RESOLUTION);
              TIFFTag tagImageWidth = base.getTag(BaselineTIFFTagSet.TAG_IMAGE_WIDTH);
    TIFFTag tagImageLength = base.getTag(BaselineTIFFTagSet.TAG_IMAGE_LENGTH);
              TIFFTag tagRowsPerStrip = base.getTag(BaselineTIFFTagSet.TAG_ROWS_PER_STRIP);
              TIFFField fieldRowsPerStrip = new TIFFField(tagRowsPerStrip, TIFFTag.TIFF_SHORT, 1, (Object)new char[]{2200});
              // Create {X,Y}Resolution fields.
              TIFFField fieldXRes = new TIFFField(tagXRes, TIFFTag.TIFF_RATIONAL,1, new long[][] {{200, 1}});
              TIFFField fieldYRes = new TIFFField(tagYRes, TIFFTag.TIFF_RATIONAL,1, new long[][] {{200, 1}});
              // Create Width/Height fields.
              TIFFField fieldImageWidth = new TIFFField(tagImageWidth,TIFFTag.TIFF_SHORT,1, (Object)new char[]{1728});
              TIFFField fieldImageLength = new TIFFField(tagImageLength, TIFFTag.TIFF_SHORT,1, (Object)new char[]{2200});
              //TIFFTag imageLengthTag = fieldImageLength.getTag();
              // Append {X,Y}Resolution fields to directory.
              dir.addTIFFField(fieldXRes);
              dir.addTIFFField(fieldYRes);
              //add Image Length and height parameters
              dir.addTIFFField(fieldImageWidth);
              dir.addTIFFField(fieldImageLength);
              // dir.removeTIFFField(278);
              dir.addTIFFField(fieldRowsPerStrip);
    testImage = new IIOImage(tiffFileReader.read(i), null, dir.getAsMetadata());
    +
    The resulting image with this carries the updated DPI values (200x200) but still carries the old values of 1752x1077, the length being exactly half of what Irfan view is showing.
    Edited by: Manuj on Nov 2, 2010 10:48 AM

    Your problem for some reason sounds familiar.
    EDIT
    Ok, now I remember. Your post is like this one in the old forums,
    http://forums.sun.com/thread.jspa?forumID=540&threadID=5425983
    Basically, for viewing purposes Irfanview scales the image's height by 2 and changes the dpi to *200x196*. It does this to achieve a 'square' pixel. The image that appears on screen now looks roughly how a printer would print it. However, the image data is still the same squished 1752x1077 image.

  • HT1918 How do you change your security questions, because I have forgot them?

    How do you change your security questions, because I have forgot them?

    1800 my apple  ask to speak to itunes support and ask them about your apple id account

  • TS3899 I had to change my email password so now have to do the same on the ipad. but when I go to settings-mail contacts etc- I can see my accounts but I am unable to do anything with them (they are light gray not regular bold black). now what?

    I had to change my email passwod so now have to do the same on the ipad. when I go to settings--mail contacts etc.- I can see my email accounts but I am unable to click on them to change them. they appear light gray instead of bold black. how do I activate them so they are accessable to change the password?

    I had to change my email passwod so now have to do the same on the ipad. when I go to settings--mail contacts etc.- I can see my email accounts but I am unable to click on them to change them. they appear light gray instead of bold black. how do I activate them so they are accessable to change the password?

  • How to change you security questions if you have forggot them ?

    How to change you security questions if you have forggot them ?

    This forum is for questions from those managing sites on iTunes U, Apple's service for colleges and universities to post educational material in the iTunes Store. You'll be most likely to get help with this issue if you go to the general iTunes forums where this question has been asked and answered dozens of times. You can also just look at the right under "more like this".
    Regards.

  • HT1937 how do i change mi security questions  if i have to answer them  but i forgot them  i  can't use my iphone

    how do i change mi security questions  if i have to answer them  but i forgot them  i  can't use my iphone

    Go to this knowledge base article and request help from Apple.  If that doesn't help, go to the ExpressLane for assistance.

  • I have three eprint printers. It dfaults to one. How do I change between them?

    I have three eprint printers. It dfaults to one. How do I change between them?

    Hi,
    You should have a list of them (icons), just right click one and select it as Default printer.
    Regards. 
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • HT5312 I need to know how to change my security questions cause I have forgotten  them and would like to buy an app but cannot cause I need to answer the questions

    I need to know how to change my security questions cause I have forgotten  them and would like to buy an app but cannot cause I need to answer the questions

    The page that you’ve posted from has instructions for how to reset them i.e. if you have a rescue email address set up on your account then steps 1 to 5 half-way down that page should let you reset them.
    If you don't have a rescue email address then you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset (and if you don't already have a rescue email address) you can then use the steps half-way down the HT5312 page that you posted from to add a rescue email address for potential future use

  • HT201363 How do I change my security questions because I have forgot them

    How do I change my security questions because I have forgot them?

    You need to contact Apple. Click here, phone them, and ask for the Account Security team, or fill out and submit this form.
    (90515)

  • [SOLVED] How to change metacity theme in Gnome 3.4?

    Hi all,
    I would really like to change the default metacity theme from Clearlooks to something else, but keep Adwaita as the default GTK+ 3 theme. Previously, it could be done using gconf-editor and changing the /apps/metacity/general/theme key value, but on my system /apps/metacity/general is completely empty (like all other metacity 'subgroups').
    Does anybody know how to set the default metacity theme?
    Last edited by digitaldingo (2012-04-24 13:13:38)

    digitaldingo wrote:I agree that one would do best in choosing a theme that supports both GTK 2 and 3, but until the themes get updated with GTK+ 3.4 support, we are stuck with either bad-looking GTK 2 or GTK 3 applications. It would be nice to not have to choose between those.
    You're not 'stuck', depending on if your are able to fix the theme, yourself. CSS isn't very difficult to read/edit... I've already been fixing a dark theme to work with gtk-3.4. Mostly, certain things have just been deprecated. So usually, it is as simple as launching a gtk app from a terminal (while using your broken theme) and looking at the gtk-related errors (usually parsing errors) then fixing them in your theme, accordingly. It's pretty easy because it will tell you exactly which line(s) need to be changed...  The most common problem i've seen that pixel sizes must now have 'px'. And there are also some fixing to do, in terms of fixing parts/widgets that don't look quite right - like maybe having to adjust a color, or border or something. but obviously mileage varies, depending on theme + it's engine.
    maybe i've just been lucky, i don't know - but i've got a semi-decent theme working, although there are still things to change and fix
    cheerz
    Last edited by triplesquarednine (2012-04-24 14:24:01)

  • Theme not finding CSS

    I've downloaded and installed a gorgeous theme called DBE_V2 locally using apex 3.2 and OracleXE. This works great.
    When i transferred the application to a server it looks like crap cause it doesn't seem to find the CSS, and no images from the theme. As far as I can tell the header looks right.
    <!--[if IE]>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <![endif]-->
    <html lang="sv" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <title>Inmatning</title>
    <link rel="stylesheet" href="/i/themes/theme_502/main.css" type="text/css" />
    <!--[if IE]><link rel="stylesheet" href="/i/themes/theme_502/main_ie.css" type="text/css" /><![endif]-->
    <script src="/i/themes/theme_502/jquery-1.3.2.min.js"></script>
    <script src="/i/themes/theme_502/jquery_ad.js"></script>
    <script src="/i/javascript/apex_ns_3_1.js" type="text/javascript"></script>
    <script src="/i/javascript/apex_3_1.js" type="text/javascript"></script>
    <script src="/i/javascript/apex_get_3_1.js" type="text/javascript"></script>
    <script src="/i/javascript/apex_builder.js" type="text/javascript"></script>
    <script type="text/javascript">
    <!--
    /*Global JS Variables*/
    var htmldb_Img_Dir = "/i/";
    //-->
    </script>
    <link rel="stylesheet" href="/i/css/apex_3_1.css" type="text/css" />
    <!--[if IE]><link rel="stylesheet" href="/i/css/apex_ie_3_1.css" type="text/css" /><![endif]-->
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    </head>
    I've tried reinstalling several times and the built in apex themes work just fine...
    Another strange thing is. I found that on the server there are to apex installations. Not beeing sure how to find out which one I was using I opened up a dynamic report in the application and right klicked the little magnifying glass and chose properties. The path of the image is http://99.99.99.99:8080/i/htmldb/builder/finder_w_dropdown.gif (not 99.99... obviously)
    I then changed the name of that image in the first install, refreshed the page but the image didn't disappear. Thinking then I must be using the second installed I changed the name of that image, just to be sure but with the same result!???
    Any ideas on why the stylesheets doesnt work would be greatly appreciated!

    Hi,
    Downside of that approach might be also on 11g that apxldimg script backup whole old image folder.
    So after doing that few times you have quite lot of backups there consuming space.
    Also, if you like have some custom folders, those are not transferred by script as I understand.
    This is what I have find out on XE.
    Do not know if 11g is different and have not check content of apxldimg,
    does it do something special if database edition is XE.
    Regards,
    Jari
    Edited by: jarola on Jan 19, 2011 4:27 PM
    You might like check this post to replace just single file
    Re: Replace 10g XE License agreement page
    Do not know does it work on 11g

  • [svn:fx-trunk] 7677: adding xslt change so Theme shows up in asdoc for the styles ( where applicable)

    Revision: 7677
    Author:   [email protected]
    Date:     2009-06-09 10:54:15 -0700 (Tue, 09 Jun 2009)
    Log Message:
    adding xslt change so Theme shows up in asdoc for the styles (where applicable)
    QE Notes: None.
    Doc Notes: None.
    Modified Paths:
        flex/sdk/trunk/asdoc/templates/ASDoc_terms.xml
        flex/sdk/trunk/asdoc/templates/class-files.xslt

    Sorry about that. I am not exactly sure where the problem is, but I know it takes place after I put the <nav> in (in the html portion). If I understand what I am learning, the CSS at the top will structure my html code so I would have thought the CSS tageting my nav would be the focus. Maybe it is a different section though.
    CSS part:
    nav p {
    font-size: 90%;
    color: #FFC;
    text-align: right;
    font-weight: bold;
    background-color: #090;
    padding-top: 5px;
    padding-right: 20px;
    padding-bottom: 5px;
    border-top-width: 2px;
    border-top-style: solid;
    border-top-color: #060;
    HTML part: (bold italic is the part I added)
    <body>
    <div class="container">
      <div id="apDiv1"><img src="Lessons/images/butterfly-ovr.png" width="170" height="158" alt="GreenStart Logo"></div>
      <header></header>
      <nav>
        <p>Home | About Us | Contact Us</p>
      </nav>
      <div class="sidebar1">
        <ul class="nav">
          <li><a href="#">Green News</a></li>
          <li><a href="#">Green Products</a></li>
          <li><a href="#">Green Events</a></li>
          <li><a href="#">Green Travel</a></li>
          <li><a href="#">Green Tips</a></li>
        </ul>

  • [solved] Eclipse looks ugly. Any way to change the theme?

    I am using KDE, with the oxygen-gtk theme for gtk.
    Most applications look pretty good for my taste.
    But then eclipse...
    ...it looks... bad...
    I want a different theme for eclipse, and keep other applications on default, though I'm not sure if I need to apply another gtk+ theme or find a dedicated theme for eclipse.
    I tried changing the theme in the "Appearance" preferences of eclipse, but that just makes it look worse.
    I also tried searching for eclipse themes and tried some from here, but that only replaced the editor's theme.
    It'd be nice if i could make eclipse look better.
    any help?
    Last edited by mid-kid (2013-06-09 16:09:20)

    crondog wrote:
    mid-kid,
    Have you tried this https://wiki.archlinux.org/index.php/Ec … background
    Holyshit, that work'd O.o (Eclipse throws an error at startup now tho)
    Thanks!
    So here is a list of what I did to get a gtk theme properly working:
    1. Remove the css folder as explained here.
    2. Download the gtk theme and place it in .themes
    3. Created a gtkrc only containing the "gtk-theme-name" value.
    4. Launch eclipse the way Trilby said, with the "GTK2_RC_FILES" variable. (unless you are using that gtkrc globally)
    5. For a final touch, you may want to edit the editor's colors by either downloading one, or editing it yourself in Preferences -> Java/PyDev/Whatever_you_use -> Editor

Maybe you are looking for