Changing CSS but some changes do not have any effect

I am experimenting with customising CSSs, and having limited success.
I have an application based on one of the default themes that uses einstein.css. I have taken a copy of einstein.css called desdir.css and loaded it into my workspace. I have changed the page template to reference this in the header as follows:
<link rel="stylesheet" href="#WORKSPACE_IMAGES#desdir.css" type="text/css" />
So far the only changes I have been making are to colours, relacing the default blue and gold with our corporate colours. For example:
.tableheader
{font-family: Arial, Helvetica, Geneva, sans-serif;
           font-size: 10pt;
           font-weight: bold;
           background: #FF9A52;
           color: #4E1B6F;}
.TabForegroundColor { background-color: #4E1B6F; }
.TabBackgroundColor { background-color: #FF9A52; }
However, I am finding that some of the changes take effect and some do not. For example, TabForegroundColor changes but TabbackgroundColor does not.
I have tried clearing the browser cache but to no avail.
Could it be that HTMLDB is ignoring my CSS and using values from somewhere else (core.css?) for some items?

Thanks.
Further to my previous post, I have since found that when I export the application and re-import into another HTMLDB environment along with the CSS file, it all works perfectly!

Similar Messages

  • 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.

  • Right arrow & Enter key do not have any effect in Address/Awesome Bar

    I enter the first few characters of the website - I can use the down arrow and Enter key to select the website but nothing happens. I have the correct website address but neither right-arrow nor the Enter key (again) work to take me to the website I want to visit.
    This problem has only since I upgraded from FF 24 to FF 25.0.1.
    Anyone know how to fix this?

    Hi,
    Thanks for the quick response.
    I turned out to be a problem with the nURL Suffix extension. It turns out that there was an update available for FF25 but an update wasn't available (yet) through Add-ons Manager so I disabled/enable extensions to find the culprit.

  • Android, default install location does not have any effect

    I have Just5 Spacer 2 phone running Android 4.4.2 and since I can not root it (the only application I found was supposed to support it was SRS Root, but I only managed to get partial root through it) I thought I'd at least be able to set default install location for applications to external storage, but apparently, despite the fact that adb shows those changes I made, phone continues to install to internal storage.
    [dainis@arch platform-tools]$ ./adb shell pm set-install-location 2
    [dainis@arch platform-tools]$ ./adb shell pm get-install-location
    2[external]
    Any suggestions?

    By digging deeper and deeper I found a few posts/pages somewhere (didn't save sources for some reason) mentioning that this stopped working somewhere at around Gingerbread.
    Those who know - is that true?

  • My Sites database status changed to "Database is up to date, but some sites are not completely upgraded."

    We have a brand new SharePoint 2013 farm which we just put into production. As users have begun creating their My Sites, the My Sites web application database changed to a status of "Database is up to date, but some sites are not completely upgraded."
    Huh?
    Prior to deploying to production, we had some test users that had created My Sites, and everything was fine. The database status was "No action required".
    Anyone know why the creation of My Sites would cause the database status to flip to this warning?

    HI Kleung,This seems to be that after the patch upgradation some of the sites are not upgraded properly.Please check the below thread that exactly talking about the issue that see in your enviornment.
    http://expertsharepoint.blogspot.de/2014/03/data-base-is-up-to-date-but-some-sites.html
    First of all, to identify what site collection doesn't got upgraded.
             Run: stsadm.exe -o localupgradestatus > upgradestatus.txt
    or
    PSConfig.exe -cmd upgrade -inplace b2b -force -cmd applicationcontent -install -cmd installfeatures  (Run from one of the WFE server)    
    In below as you see, there no site collection that need upgrade. If you have any, you can identify
    them by searching by word "Needs upgrade" in this file.                  
    Secondly, run the command in the Power Shell:
    For resuming the upgrade, you’ll need the ID for the database :
    Get-SPContentDatabase -Identity <your content database name>
    When you got the GUID for the database you can then resume the upgrade
             upgrade-spcontentdatabase -id <database
    GUID>
    Finally, check the upgrade status by running stsadm again:
    stsadm.exe -o localupgradestatus > upgradestatus.
    Thanks
    Anil Avula See Me At: http://expertsharepoint.blogspot.de/

  • Looking for some app which send SMS when there is Sim change in Iphone 4 G. Do we have any such software which is free

    looking for some app which send SMS when there is Sim change in Iphone 4 G. Do we have any such software which is free or even paid will work.

    I thought that is what the big deal was that people did not know until they opened the box and started using the iPhone 5, that it not only worked with one carrier but several carriers.  I did not say it will work with any carrier at one time.  I was trying to find out the reason for this and why people were so surprised that the iPhone 5 had this function and the reason for it.  As stated in my post, is it there so that after your contract is up and you want to go to another carrier you do not have to purchase a new iPhone, you  cna purchase a SIM card that works with your new carrier.
    The Otterbox Defender has a tendency to let too much dirt, dust, etc. in the cracks on the case. At least this has been my expereince.  I was thinking something more along some of the really durable cases at BallisticCaseCo.com
    As far as the iPhone 5 having issues, I have heard that there were more than usual with the first couple of manufactured batches that were shipped.  For example the Map App by Apple, the scratches on the backside of hundreds of iPhones, etc.  I am hoping these will get to be less and less, but with the recent riot at the one plant in China where the iPhone 5 is assembled is supposed to increase the waiting time.

  • Hi! I'd like to purchase PS and LR, when I processing the payment, I find that my Adobe ID registered under US, However, I living in HK, how to change? can't process the payment being I did not have any ZIP code

    Hi! I'd like to purchase PS and LR, when I processing the payment, I find that my Adobe ID registered under US, However, I living in HK, how to change? can't process the payment being I did not have any ZIP code

    Hi Ivanlaiwh,
    I have been doing the modification regarding your account.
    You should now be able to proceed to a new purchase.
    Thanks.
    Arnaud.

  • HT2534 I already made an accoount, so how can I change it so that I do not have to choose a type of credit card. Cause it does not give me the option of NONE

    I already made an accoount, so how can I change it so that I do not have to choose a type of credit card. Cause it does not give me the option of NONE

    Did you follow the instructions on that page exactly ? The instructions work for me e.g. selecting a free app in the App Store app and tapping on 'free', then 'install app' and 'create new apple id' - filling in my details then gave a 'none' option on the payment details :

  • TS4051 This MacBook Pro (circa 2011) is the second Apple laptop with the same issue.  When I change sites (or at least many of them), the Mac issues a single chime.  I do not have any clue what this might be ... or if it even needs repairing if I can stan

    This MacBook Pro (circa 2011) is the second Apple laptop I have owned with the exact same issue.  When I change sites (or at least many of them), the Mac issues a single chime.  I do not have any clue what this might be ... or if it even needs repairing if I can stand the chime.
    If anyone has any ideas, I surely would love to hear!  Many thanks!
    Madelaine

    This is the Mac Pro (desktop workstation) forum.  You will probably get more meaningful results here:
    MacBook Pro: Notebooks: Apple Support Communities
    good luck

  • Connecting to Time Capsule via ethernet but my computer does not have an IP address

    I'm connected to internet w/Airport TC.
    I want to connect via ethernet for fast and stable backup. When I connect the ethernet cable what I see is "The cable for Ethernet is connected, but your computer does not have an IP address". I don't want to mess up with my connection. What should I do?

    Thanks for your response Bob, I found a way to resolve my issue.
    I'm connecting to internet via wireless modem. TC is connected to that wireless modem via wired ethernet connection and functions as a router - I guess - so our Apple devices connect to the network.
    I had disabled WiFi earlier, since I wanted to connect to TC via ethernet. I realized I somehow needed to have the connection re-enabled WiFi but change the connection order, so ethernet is at the top of the list.
    It might have been some other things I did, like trying to imitate config samples I found on the net by typing 255.255.255.0 and 192.something.something.0...etc.
    Not sure exactly what made it work, but eventually, I believe I managed to connect and transfer many gigs of data over to TC with ethernet but it still took soooooo long.
    Thanks,
    Vanmoose

  • My maestro debit is not working in Itunes as it is asking for an issue number but my card does not have one.

    I try to purchase a free app on the app store and it asks for my password. I put my password in and it asks me to change my billing info. I put in all the correct info but it asks for a issue number but my card does not have one so i can't purchase anything even if it's free.

    Andy ...
    If you are going to use a debit card it you must enter a security code.

  • Flash Player usually works, but some things will not work.

    I've had a strange problem ever since I installed Windows 7 on my computer. Flash player almost always functions properly but does not work on a few specific things such as the music player on Myspace. The player shows up on any artists page but when I click the play button it changes to pause like normal then in about half a second it pauses the song and switches back to the play icon. I can press the play button again and it just does the same thing over and over again. It will pause the song and only play for about half a second between pauses.
    Another example is when I go to nikeid.com I can load the first flash page and select my language, then it goes to a loading screen where squares fade in and out but it will not go beyond that page. I can get passed the page on any other computer I've ever tried.
    Also, sometimes photo viewers that use flash will not display the photos properly. They will be off to one side and you can't see the photo.
    These same problems happen for me on multiple browsers including Internet Explorer, Firefox, and Chrome. I've tried reinstalling Windows 7, and reinstalling Flash multiple times. I did not have any of these problems when I was using Windows Vista on this computer. On a final note I am using Windows 7 64bit but I am absolutely positive I am using 32bit web browsers when I am browsing the web. These things worked fine on Vista 64bit.
    Thank you for any and all help.

    I don't know any of the websites you mention, so I don't know what should or should not be happening on there.  Also are you sure they use Flash Player and not Shockwave Player?
    If Flash Player, try different settings like disabe/enable Hardware Acceleration, or Allow 3rd-party on http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager03.htm l or change the Storage settings for the websites in question at http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager07.htm l

  • I want to buy some music and It is asking some question that I do not have any idea the answer

    When I am trying to buy some music iTunes is asking me about some questions that I do not have any idea....

    Hello Brandy,
    Unfortunately, you can't change or etrieve them by yourself as you forgot the original ones. You may contact iTunes store support though. Here's what you can do:
    https://expresslane.apple.com/
    Follow these steps:
    All Products and Services > iTunes > iTunes Store > Account Management > iTunes Store account security
    Answer the questions and if required sign in with your Apple ID and password - same one you used to log in on this support forum.
    You will find an option to send an email to Apple on that page. Indicate that you forgot the answers to your security questions and wait for iTunes support to reply.
    I hope this helps.

  • Sharepoint list dataheet view error "Cannot connect to the server at this time. You can continue working with this list, but some data may not be available"

    I have a List which is having around 14000 items in it.while opening that list in datasheet view it is giving error .
    Below is a summary of the issue:
    After selecting datasheet view beow error occurs:
        "Cannot connect to the server at this time.  You can continue working with this list, but some data may not be available."
        "Unable to retrieve all data."
        The item counts displays say 100 out of 14000 items.
    Exporting List to excel is giving only 2000 records out of 14000 records.
    Other Observations   -  
    This is happening to only one list on the site .There are other lists in the site whose no. of records is equal to 8000 to 9000.They are working absolutely fine without any error.
    Also, If I am saving this list as a template and creating another list with it ,then it is working absolutely fine with 14000 records,so the issue does not seem to be related with no. of records as the template list is working fine.
    I have checked the Alternate access mapping setting ,its fine.
    It should not be related to lookup,datefield or any other column as the list created from it template is working fine with all these columns.
    I checked below links also ,but doesn't seem to work in my case.
    http://social.technet.microsoft.com/forums/en-US/sharepointadminprevious/thread/974b9168-f548-409b-a7f9-a79b9fdd4c50/
    http://social.technet.microsoft.com/Forums/en-US/smallbusinessserver/thread/87077dd8-a329-48e8-b42d-d0a8bf87b082
    http://social.msdn.microsoft.com/Forums/en-US/sharepointgeneral/thread/dc757598-f670-4229-9f8a-07656346b9b0

    I have spent two days to resolve this issue. Microsoft has released two KBs with reference to this issue...but are not appearing in search results at the top.
    I am sharing my finding.
    1. First install the
    KB2552989 (Hopefully you might have already installed it. The KB detetcts it and informs the user.)
    2. Then update registry by adding new key for data fetch timeout as mentioned inKB2553007
    These two steps resolved the issue in our environment. Hope it might help others as well.
    Pradip T. ------------- MCTS(SharePoint 2010/Web)|MCPD(Web Development) https://www.mcpvirtualbusinesscard.com/VBCServer/paddytakate/profile

  • How do I delete photos from iPod Touch?  Some photos do not have the trash basket option!

    How do I delete photos from iPod Touch?  Some photos do not have the trash basket option!
    When I first synced my iPod Touch with my laptop, it uploaded a lot of photos onto the iPod.  I now wish to delete those but it does not seem as a straight forward option!

    For photos synced to the iPod you have to unsync them:
    To delete photos from your device
    In iTunes, select the device icon in the Devices list on the left. Click the Photos tab in the resulting window.
    Choose "Sync photos from."
    On a Mac, choose iPhoto or Aperture from the pop-up menu.
    On a Windows PC, choose Photoshop Album or Photoshop Elements from the pop-up menu.
    Choose "Selected albums" and deselect the albums or collections you want to delete.
    Click Apply.
    http://support.apple.com/kb/HT4236

Maybe you are looking for

  • How can I kill a thread.

    I have read the many threads about killing a thread but they dont answer the question I need to know. In class#1 I have the following snipet of code: for (int i=0; i < docs.size(); i++)     try {         boolean blncompleted = false;      Map object

  • Java.lang.SecurityException: [Security:090398]Invalid Subject

    Hi           I am getting this error when I am making an EJB method which resides in a different weblogic 9.1 server.           I have enaled the trust between my two domains. Set the required class path settings.           My client call is from a J

  • DTW Importing data

    hello,I imported some data into the order object (Document and Document_Line), the result shows "3 business object(s) imported successfully". But the records are not in the table when I did a SELECT statment in SQL query anaylzer, or from SAP Query G

  • Ppt transfers to keynote in ipad

    Hi: So I have alot of powerpoint presentations I want to put on my kynote application on my ipad, but when I try and transfer them thru the itunes link they come over to the ipad, and fail to be "translated" .. ugh .. I tried lots of different format

  • Epson CX6600 printer driver for iphone 4S

    My Epson All-in-one printer CX6600 is not in Epson's supported iphone list of iPrint, Any other way to make this printer work with iPhone 4S? Please help.