Windows 8 and CSS problems (FF 16 & 17)

I just got a brand spanking new Win 8 computer (intl English). The only things installed on it are Adobe Master's Collection, Steam, Office and Firefox. In addition I tried installing adblocker, because that's a must for me and if this problem is resolved by removing it I will have to switch to another browser.
Now, the problem is that FF is having problems loading pages with CSS. Occasionally, this results in a pages with nothing at all (except background color, it seems) or with just unformatted text. Most of the time this is fixed by doing a shift+reload, but not always. Some times it's just partially fixed and some elements don't load still.
I've tried disabling all extensions and plugins and I've also tried resetting FF. The problem always comes back. I've even tried resetting my hosts file.
Do you have any more ways of fixing it? I believe I've done everything in my power, except change browsers (which I really don't want to do unless it's my only option).
The only thing I haven't tried, which I'll try now, is unpin all my app tabs and see if that fixes anything. I'll update this if I can...
Pages affected: Facebook (some of the time), Couch Potato (installed on my server - never seen this on other computers or even other browsers on my computer, always), MyFitnessPal (occasionally), and some low-tech dating page I'm on.
Cheers,
Lars

So, it still happens with a new an clean profile without extensions?
In that case you may have security software (firewall, anti-virus) that block some content.
You can reload web page(s) and bypass the cache to refresh possibly outdated or corrupted files.
*Press and hold Shift and left-click the Reload button.
*Press "Ctrl + F5" or press "Ctrl + Shift + R" (Windows,Linux)
*Press "Command + Shift + R" (MAC)
You can also try to use the Web Console (Web Developer > Web Console;Ctrl+Shift+K) to see if you can identify network related issues.
*https://developer.mozilla.org/en/Tools/Web_Console
*https://developer.mozilla.org/en/Using_the_Web_Console

Similar Messages

  • Application switching/windows and titlebar problem

    Hi,
    Apologies if this isn't the best place to post this, but it's a problem that relates to switching between applications in OS X, and I haven't yet found an answer through Director forums.
    So... I am working on a (cross-platform) Director project that has to link to and open Word DOCs. I have a problem in OS X whereby when a DOC is opened, the Mac does not seem to be switching properly into Word. What happens is: click thumbnail (running handler to open DOC, using Buddy API xtra); Word starts to open the DOC; DOC window appears in front of projector Window, but the Mac titlebar seems to 'stick' in the projector. I can edit the DOC, use keyboard commands to save etc., but no menus are visible due to the 'ProjectorName.osx' title bar. I can switch to Word with Apple-tab, but not by clicking in the Word window(s).
    A few extra notes:
    • The projector resizes the screen to 800x600, but even with this feature disabled the problem persists.
    • There appears to be a very strong link between creating a Full Screen projector and whether the problem manifests itself or not. All projectors created with Full Screen checked now have the problem (along with a few non-Full Screen). Unfortunately I need to lose any title/menu bar, therefore need to use Full Screen projectors.
    • The problem has just arisen; essentially identical projectors (ie. differences are only in graphics) have run OK.
    • We have used a couple of different xtras to open the files, for reasons unconnected with this issue. However we have been using BuddyAPI for a while, so I am reasonably sure that the problem is not related to this.
    • Ensuring that unnecessary apps are closed, to ensure plenty of free memory, makes no difference.
    Paul

    > now my oracle is up but not able to login in sap.
    Your system is hosed up.
    > one is : oraclesri102isql*plus service is not getting started.
    That service is not important for a SAP system.
    Chintan,
    it is not supported to make changes to a domain structure after you installed the system (see the given note). That's why your SAP system is not coming up, all filesystem-, registry and user permissions are invalid.
    The only way to resurrect your system is to reinstall it.
    Configure first the operating system (as standalone or in a domain) - and then install the SAP system, not vice versa.
    Markus

  • Sharing folders in 10.8.3 to windows and macs PROBLEMS

    I'm tryng to share folders from an 10.8.3 imac to users in my LAN (using bot mac and windows) I'm having this problem:
    1) Mac users can access the share using afp:// but
    when they create new folders the permission are: drwxr-xr-x so no other can write those folders
    2) PC users can access the share using smb:// but
    when they create new folders the permission are: drwx------ so no other can read/write/execute
    all user belong to the same group and the shared folders are owned by that group
    I have create a file /etc/launchd.conf with umask 002 reboot but nothing has changed
    I THOUGHT THAT MAKING SHARES IN MAC SHOULD BE EASY BUT IT SEEMS SOO HARD :-)

    I'm tryng to share folders from an 10.8.3 imac to users in my LAN (using bot mac and windows) I'm having this problem:
    1) Mac users can access the share using afp:// but
    when they create new folders the permission are: drwxr-xr-x so no other can write those folders
    2) PC users can access the share using smb:// but
    when they create new folders the permission are: drwx------ so no other can read/write/execute
    all user belong to the same group and the shared folders are owned by that group
    I have create a file /etc/launchd.conf with umask 002 reboot but nothing has changed
    I THOUGHT THAT MAKING SHARES IN MAC SHOULD BE EASY BUT IT SEEMS SOO HARD :-)

  • H:panelGrid and css problem?

    Hi,
    I have following piece of code:
    <h:panelGrid columns="3" columnClasses="columnHeader,oddRow,evenRow" rowClasses="oddRow, evenRow" styleClass="tableSettings">
         <h:outputLabel for="accountName">
              <h:outputText value="Account Name"/>
         </h:outputLabel>
         <h:inputText id="accountName" value="#{Edit.accountName}" required="true"/>
         <h:message for="accountName" styleClass="errorText"/>
         <h:outputLabel for="accountDescription">
             <h:outputText value="Account Description"/>
         </h:outputLabel>
         <h:inputText id="accountDescription" value="#{Edit.accountDescription}" required="true"/>
         <h:message  for="accountDescription"  styleClass="errorText"/>
         <h:outputLabel  for="accountTypeName">
             <h:outputText value="Account Type Name"/>
         </h:outputLabel>
         <h:inputText id="accountTypeName" value="#{Edit.accountTypeName}" required="true"/>
         <h:message for="accountTypeName" styleClass="errorText"/>
    </h:panelGrid>
    <br/>
    <h:commandButton id="clearAccount" action="clearAccount" value="Clear" actionListener="#{Edit.clear}"/> <!--  -->
    <h:commandButton id="sendAccountInformation" action="#{Edit.sendMessage}" value="Send"/>
    <br/>
    <h:commandLink id="goToAllAccounts" action="goToAllAccounts" value="All Accounts" />In my css file I have .classHeader, .oddRow, .evenRow and a and a:hover classes:
    .tableSettings {
         border: solid #000000 1px;
         width: 100%;
    .columnHeader {
        text-align: center;
        nowrap: true;
        background-color:"#000000";
        color:"#FFFFFF";
    .oddRow {
        background-color: "#E0E0E0";
    .evenRow {
        background-color: white;
    .errorMessage {
         color : #FF0000;
         font-weight: bolder;
    a {
         text-decoration: none;
         color: #337799;
         font-weight: bolder;
    a:hover {
         text-decoration:underline;
         color: #abcdef; /*FF5555*/
         font-weight: bolder;
    }And problem I have is that link at the bottom is rendered correctly (and when it is hovered it changes color), but panelGrid is missing almost all styles, only border of the table is present. I've already tried removing columnClasses and rowClasses...
    Does anybody know where can be a problem?
    Regards,
    morhen

    Found the problem. At the beginning of my *.jsp document I had:
    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">when I deleted
    "http://www.w3.org/TR/html4/loose.dtd"styles appeared, but I don't know why... interesting...

  • @ResourceDependency and css problems

    I was trying the create a jquery-ui datepicker as a JSF2 component, and I used @ResourceDependencies and @ResourceDependency to add jquery and jquery-ui scripts and jquery-ui css. Everything worked fine (almost) but the images used by jquery-ui datepicker didn't. My browser simply couldn't load any image referenced by jquery-ui.css. Any tip?

    Yellowbike wrote:
    I was trying the create a jquery-ui datepicker as a JSF2 component, and I used @ResourceDependencies and @ResourceDependency to add jquery and jquery-ui scripts and jquery-ui css. Everything worked fine (almost) but the images used by jquery-ui datepicker didn't. My browser simply couldn't load any image referenced by jquery-ui.css. Any tip?I had the same problem when wrapping the YUI components. The server can't find the images because they're in a jar (or in WEB-INF/classes), so you need to override the image classes in such a way as to create a link JSF can use to load the image from the classpath. For example (from http://kenai.com/projects/scales/sources/mercurial/content/main/src/main/resources/META-INF/resources/scales/css/overrides-calendar.css?rev=447):
    .yui-skin-sam .yui-calcontainer .title {background-image:url(#{resource['yui/assets/skins/sam/sprite.png']});}
    Those image is found at META-INF/resources/'yui/assets/skins/sam/sprite.png in my jar (along with several others).

  • Windows And Oracle Problem

    Hi...
    Our server is Windows server 2003 64 bit on which SAP IDES 6.0 is there.
    its working fine. then we have remove Domin through RUN>DCPROMO command so all my user has been removed so i have again created windows users.
    after that all my service working fine with Dispatcher.
    but when i am trying to logon with SAPLOGON its giving "Application server shutdown" and then Dispatcher service is getting stop.
    then i am trying in SQL Plus with Username/Pwd it is giving following error.
    "Oracle not available.
    Shared Memory realm does not exsist."
    i have tried with already available forums but its not working.
    Following group are also not available in windows group
    ORA_XEP_DBA
    ORA_XEP_OPER
    SAP_LocalAdmin
    SAP_XEP_LocalAdmin
    SAP_XEP_GlobalLocalAdmin
    i have added in Oracle forum but not helpful so i think windows users can help
    Kindly help.

    > now my oracle is up but not able to login in sap.
    Your system is hosed up.
    > one is : oraclesri102isql*plus service is not getting started.
    That service is not important for a SAP system.
    Chintan,
    it is not supported to make changes to a domain structure after you installed the system (see the given note). That's why your SAP system is not coming up, all filesystem-, registry and user permissions are invalid.
    The only way to resurrect your system is to reinstall it.
    Configure first the operating system (as standalone or in a domain) - and then install the SAP system, not vice versa.
    Markus

  • CONTENT_COMPRESSION and CSS problem

    Hi all
    I'm using JDeveloper 11.1.2.1 and I am trying to conditionally format table row when row is selected or hovered.
    When web.xml context param org.apache.myfaces.trinidad.DISABLE_CONTENT_COMPRESSION is set to true my css is applyed as expected, but when I enable content compression my css doesn't work.
    Here is my css code:
    af|table::data-row:selected af|column::data-cell.SpecialRow,
    af|table::data-row:selected:hover af|column::data-cell.SpecialRow{
        background-color: #ff8383;
    af|table::data-row:hover af|column::data-cell.SpecialRow{
        background-color: #ffa5a5;
    }SpecialRow css class is set on every column in my table.
    What am I doing wrong?
    Is there another way to apply different css for different selected or hovered rows?
    Thanks in advance.

    Specify the styleClass as below:
    .SpecialTable af|table::data-row:selected af|column::data-cell {
        background-color: #ff8383;
    .SpecialTable af|table::data-row:selected:hover af|column::data-cell {
        background-color: #ff8383;
    .SpecialTable af|table::data-row:hover af|column::data-cell {
        background-color: #ffa5a5;
    }Use this named class for the table (not for the column) as below:
             <af:table value="#{bindings.Departments.collectionModel}" var="row"
                              rows="#{bindings.Departments.rangeSize}" styleClass="SpecialTable"
                              emptyText="#{bindings.Departments.viewable ? 'No data to display.' : 'Access Denied.'}"
                              fetchSize="#{bindings.Departments.rangeSize}" rowBandingInterval="0"
                              selectedRowKeys="#{bindings.Departments.collectionModel.selectedRow}"
                              selectionListener="#{bindings.Departments.collectionModel.makeCurrent}" rowSelection="single"
                              id="t1">
                        <af:column sortProperty="#{bindings.Departments.hints.DepartmentId.name}" sortable="false"
                                   headerText="#{bindings.Departments.hints.DepartmentId.label}" id="c1">
                            <af:outputText value="#{row.DepartmentId}" id="ot1">
                                <af:convertNumber groupingUsed="false"
                                                  pattern="#{bindings.Departments.hints.DepartmentId.format}"/>
                            </af:outputText>
                        </af:column>
                        <af:column sortProperty="#{bindings.Departments.hints.DepartmentName.name}" sortable="false"
                                   headerText="#{bindings.Departments.hints.DepartmentName.label}" id="c2">
                            <af:outputText value="#{row.DepartmentName}" id="ot2"/>
                        </af:column>
                    </af:table>Thanks,
    Navaneeth

  • Sitemesh and css problem

    Hi. I want to use SiteMesh to decorate various pages (jsp, html). I have a decorator, but i can't seem to link a css sheet to my pages.
    I have decorators.xml in /WEB-INF/
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <decorators defaultdir="/WEB-INF/decorators">
    <decorator name="main" page="main.jsp">
    <pattern>/*</pattern>
    </decorator>
    </decorators>
    I have main.jsp in /WEB-INF/decorators/
    <%@ taglib prefix="decorator" uri="http://www.opensymphony.com/sitemeshdecorator" %>
    <head>
    <title>
    <decorator:title default="Java Tutorial" />
    </title>
    <link href="*/decorators/main.css*" rel="stylesheet" type="text/css"> //here I also tried href="<%= request.getContextPath() %>/decorators/main.css", but it //also does'n work
    <decorator:head />
    <body>
    <decorator:body />
    </body>
    </html>
    and I have main.css in /WEB-INF/decorators/
    but when I run the application it displays everything except for the stylesheet elements. Any idea what I'm doing wrong?

    Another thing to check is the path to the CSS file which is finally generated to the HTML source. Do you understand how to read/interpret relative paths? In your <link> element for the CSS file you've a leading slash which would lead to the domain root. Which may be wrong if your webapp is deployed with a non-empty context root.
    E.g.
    page.jsp absolute URL = http://domain.com/contextroot/page.jsp
    main.css relative URL = /decorators/main.css
    Thus its absolute URL is http://domain.com/decorators/main.css which may not exist.
    Maybe it is actually located at http://domain.com/contextroot/decorators/main.css, test it and see if it gives the CSS or a 404.
    If that works, you need to remove the leading slash from the relative URL, so that it becomes relative to the root of the requested JSP page, which is http://domain.com/contextroot.

  • Dbx Process I/O Window and CURSES problems

    Does anybody know how to make CURSES based application to work properly when using Studio 11 dbx �Process I/O� Output Window?
    Some characters are scrambled on output and the worst part is that input �arrows� from keyboard and some other keys will not return from �wgetch(win) curses function call. �keypad()� is set to TRUE.
    The application works fine running under xterm with TERM=vt100 settings
    It was also running fine under Forte IDE debugger.
    Thanks

    Ivan,
    This is promised CURSES code. It is very quick and simple but it will demonstrate issues I was describing. There is also another issue � which you will notice very soon. If you try to rerun the process the screen will not reset. You can get very odd behavior.
    Regarding the terminal I would probably prefer to have it outside the IDE.
    Thanks
    Code was compiled with: cc �g �l curses
    #include <stdlib.h>
    #include <stdio.h>
    #include <termios.h>
    #include <curses.h>
    #include <unistd.h>
    int main()
    {WINDOW *win1;
    int key;
    char ch;
    char *s;
      initscr();
      clear();
      refresh();
      win1 = newwin(20,50,0,0);
      scrollok(win1,1);
      keypad(win1,1);
      werase(win1);
      box(win1,'*','*');
      wrefresh(win1);
      cbreak();
      noecho();
      do {
        mvwaddstr(win1,2,3,"CTRL A - quit:");
        mvwaddstr(win1,3,3,"Enter Symbol:");
        key = wgetch(win1);
        mvwaddstr(win1,4,3,"You Entered :");
        ch = (char)key;
        switch (key) {
          case KEY_UP:
            waddstr(win1,"KEY_UP   ");
            break;
          case KEY_DOWN:
            waddstr(win1,"KEY_DOWN ");
            break;
          case KEY_LEFT:
            waddstr(win1,"KEY_LEFT ");
            break;
          case KEY_RIGHT:
            waddstr(win1,"KEY_RIGHT");
            break;
          case KEY_ENTER:
            waddstr(win1,"KEY_ENTER");
            break;
          default:
            if ( ch == '\001' )
              break;
            else if ( isalpha(ch) ) {
              s = "         ";
              s[0] = ch;
    else
    s = "another ";
    waddstr(win1,s);
    break;
    } while ( ch != '\001' );
    endwin();
    exit(0);
    }

  • Javahelp and css problem

    I haven't been able to get image bullets to work in JavaHelp with css .
    " I believe it's because the "url" attribute is not part of the HTML 3.2
    specification. I hope I'm wrong, I'd like to be able to use bullets"
    example
    body{
    background-image: url("fondo.gif");
    this don't work in javahelp but yes in firefox

    I haven't been able to get image bullets to work in JavaHelp with css .
    " I believe it's because the "url" attribute is not part of the HTML 3.2
    specification. I hope I'm wrong, I'd like to be able to use bullets"

  • CR Developer 2008 extremely slow to open... and other problems

    Hi all,
    I'm having problems with Crystal Reports 2008
    When I click on the icon, the CR window opens straight away, but it takes a full 8 minutes before the Start Page loads. During this time, I can't click on anything (theres just an hour glass).
    I've tried uninstalling and reinstalling (twice) and I'm still having the problem.
    Also, once it eventually loads, I can't get to the Page Setup options. It just comes up with an "Out of Memory" error. I've tried removing all the printers as suggested elsewhere on these forums and reinstalled (as mentioned before) but the problem remains..
    Any help would be greatly appreciated.
    Kyle.

    Disabling the 'Check for Updates' option has solved the issue of CR taking a long time to load but the Page Setup 'Out of Memory' error remains.
    I'm not sure I 100% understand what you're suggesting Graham.
    I have 6 printers installed, all work fine with other software. I have tried removing and reinstalling them but the problem remains.
    I've even removed all the printers, reinstalled CR with no printers installed (so it just has 'Fax Printer' and 'Microsoft Office Document Image Writer' in the Printers and Faxes window) and the problem still occurs.
    Any other suggestions?

  • Bootcamp and windows 8(partition problem)

    I am trying to install windows 8 and until now with no sucess. The instalation by the bootcamp runs smoothly, but when I boot from the USB, start the instalation process on windows and it asks me what partition I want to install the windows, I try to choose the Partition 4: BOOTCAMP and it doesn't work. It says it's a problem because the partition is EFI and for installing windows it can't be or something like that
    And if I don't press the Alt button, when the bootcamp finishes the instalation and reboot the mac, it goes to a black screen where said that I don't have any boot devices connected and to connect one and press a key.

    I believe you are supposed to format the partition labeled BOOTCAMP to NTFS from the installer. It is stated in the BootCamp suport guide.

  • Problem with windows and variable in smartform

    hi guru,
    i create smartform for printing tax document and found problem.
    1) 
    i create layout in form like this.
           {Main Window}
                     <<<< Data to print
           <<<< secondary Window
             <<<< secondary Window
    with many data in table, so this form will take 10 page up to print. i found and showed in every page.
    in my solution *i want to display and on last page after {Main Window} Only*. how to resolve this.
    2)  follow to 1st question, can i place position of each window in dynamic?  +like 's position is under {Main Window} 2 cm.+ instead of specific position left margin , upper margin *or should i create other page and place and .*
    3)  i create 2 variables  (sum1 type p , sum2  type p ) for keep sum of  tax in table that show in each page and write it at end of each page. i want to clear data in these 2 variables when system create new page and start to keep sum of value again. i create program line node under {Main Window} after but don't know which code or syntax to write.how to code this?
    regards,
    Kittisak.

    1) On the 'Conditions' tab of your WIndow3 & WIndow4 just click the check box
    'Only After End of Main Window'. It will always be printed at the last after your main window is finished.
    2) And if you don't want your window3 & window4 in a fixed place than instead of new windows do the same thing inside your main window creating a new template or anything as per your requirement and place it after your main table.
    3) For clearing the fields, do it like this, in the program lines write the code below:
    IF G_PAGE NE SFSY-PAGE.  " declare g_page with initial value '0'
        CLEAR field1.   
        CLEAR field2.
        G_PAGE = SFSY-PAGE.   
      ENDIF.
    With luck,
    Pritam.

  • Problem with applet, popup window and focus loss

    Hi all !
    I've got a problem when my applet lose the focus. Let me explain :
    I've got an applet embed in a jsp page. There are several buttons in it that allow the user to open modal windows.
    The problem comes when the user gives the focus to another application whithout closing the modal window first.
    When he tries to come back to the web page owning the applet (using the task bar), then the modal window stays behind it and blocks any action on the applet.
    Does anyone know how to force the modal window to be displayed in front of the applet, even when the user plays with focuses ?
    Thank's in advance.

    thank you for your help, sils.
    I've written that code :
    * Cr�� le 31 ao�t 05
    package com.scor.apricot.web.rpc.ltnp.applet.listener.ldf;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.JDialog;
    import javax.swing.JPanel;
    public class AppletWindowListener extends WindowAdapter {
         private JPanel panel;
         private JDialog dialogWindow;
         public AppletWindowListener(JPanel panel, JDialog dialogWindow) {
              this.panel = panel;
              this.dialogWindow = dialogWindow;
         public void windowActivated(WindowEvent e) {
              if (dialogWindow!=null && dialogWindow.isShowing())
                   dialogWindow.toFront();
    }Is that right ?
    I don't know how to add the listener, where must I put the addWindowListener method ? It seems that this method cannot be used with a JApplet object.

  • I downloaded a film from ITunes in HD and had problems, I upgraded to the latest version of ITunes and have then downloaded the film again in SD on my Windows 7 computer, but I still can't get the film to play, any idea's what to do next?

    I downloaded a film from ITunes in HD and had problems, I upgraded to the latest version of ITunes and have then downloaded the film again in SD on my Windows 7 computer, but I still can't get the film to play, any idea's what to do next?
    I've been working at the same problem for hours now and it's really driving me crazy so any help would be greatly appreciated.

    It is working now. I no longer get the message about the item not being available in the US and I can access the store.

Maybe you are looking for