Why all my Web pages have white background

When I open IE8 and go to Web pages all Web pages have white backgrounds. I don't know how much more clear, I can say that.

What happens when you try to restore the system?

Tags: Windows

Similar Questions

  • Since download 18.02, all my web pages have returned back to a chassis of 8 x 11. How can I find big screen mode?

    When I go to a news web page, it loads with 4:3 aspect ratio, instead of the already in 16:9. This is not limited to a single Web site and is a distinct change since the download of the latest version. I haven't downloaded or changed what would have caused this.

    Check that you are not running Firefox in compatibility, or with a reduced screen resolution mode.

    You can open the properties of the desktop Firefox shortcut via the context menu and check under the tab "compatibility".

    Make sure that all items are disabled in the tab "Compatibility" in the Properties window.

  • Why all my target areas have blue background

    Please tell me how to hide or remove the blue background of my focused fields.

    The non-target fields have no blue background.

    Thank you

    public class SignInScreen extends MainScreen {
        public int displayWidth = Display.getWidth();
        public int displayHeight = Display.getHeight();
        CustomInputField cifUser = new CustomInputField((int)(displayWidth/4), (int)(displayHeight/4), (int)(displayWidth/2), (int)(displayHeight/16), 16, "Username", "Textbox.png");
        CustomInputField cifPW = new CustomInputField((int)(displayWidth/4), (int)(displayHeight/24), (int)(displayWidth/2), (int)(displayHeight/16), 16, "Password", "Textbox.png");
        public SignInScreen() {
            super(Manager.NO_VERTICAL_SCROLL | Manager.NO_VERTICAL_SCROLLBAR | USE_ALL_WIDTH | USE_ALL_HEIGHT);
            VerticalFieldManager vfManager = new VerticalFieldManager(NO_VERTICAL_SCROLL | NO_VERTICAL_SCROLLBAR | USE_ALL_WIDTH | USE_ALL_HEIGHT)
            {
                //Override the paint method to draw the background image.
                public void paint(Graphics graphics)
                {
                    //Draw the background image and then call paint.
                    Bitmap newBGB = GPATools.ResizeTransparentBitmap(Bitmap.getBitmapResource("bg_pizza.jpg"), displayWidth,displayHeight, Bitmap.FILTER_LANCZOS, Bitmap.SCALE_TO_FILL);
                    graphics.drawBitmap(0,0,displayWidth,displayHeight,newBGB,0,0);
                    super.paint(graphics);
                }
             };
            HorizontalFieldManager hfManager = new HorizontalFieldManager() {
                // overrides the managers paintBackground method, this draws the background
                protected void paintBackground(Graphics graphics) {
                    Bitmap newBar = GPATools.ResizeTransparentBitmap(Bitmap.getBitmapResource("back-bar.png"), displayWidth, displayHeight/10, Bitmap.FILTER_LANCZOS, Bitmap.SCALE_TO_FILL);
                    graphics.drawBitmap(0,0,displayWidth,(int)(displayHeight/16),newBar,0,0);
                    super.paint(graphics);
                }
                protected void sublayout( int maxWidth, int maxHeight )
                {
                    super.sublayout( maxWidth, maxHeight );
                    XYRect extent = getExtent();
                    int width = Math.max( extent.width, displayWidth);
                    int height = Math.max( extent.height, (int)(displayHeight/16));
                    setExtent( width, height);
                }
    
            CustomBitmapField bbfBack = new CustomBitmapField((int)(displayWidth/90), (int)(displayHeight/216),(int)(displayWidth/5), (int)(displayHeight/18), FIELD_VCENTER | FIELD_LEFT | FOCUSABLE, "back-button.png", "back-button-on.png");
            CustomBitmapField bbfForgotPW = new CustomBitmapField((int)(displayWidth*0.45), 0, (int)(displayWidth/3), (int)(displayHeight/16), FIELD_VCENTER | FIELD_RIGHT | FOCUSABLE, "forgot-password-on.png", "forgot-password-on.png");
            CustomBitmapField bbfLogo = new CustomBitmapField((int)(displayWidth/4), (int)(displayHeight/24), (int)(displayWidth/2), (int)(displayHeight/6), FIELD_VCENTER | FIELD_HCENTER, "logo_pizza_onebitedefault.png", "logo_pizza_onebitedefault.png");
            CustomBitmapField bbfSubmit = new CustomBitmapField((int)(displayWidth*0.3), (int)(displayHeight/24), (int)(displayWidth*0.4), (int)(displayHeight/12), FIELD_VCENTER | FIELD_HCENTER | FOCUSABLE, "button_submit_pizza.png", "Submit-button-on.png");
            CustomInputField noAccount = new CustomInputField((int)(displayWidth*0.3), (int)(displayHeight/24), (int)(displayWidth*0.6), (int)(displayHeight/18), 22, "Don't Have an Account?", "No Account");
            CustomBitmapField bbfSignUp = new CustomBitmapField((int)(displayWidth*0.3), 0, (int)(displayWidth*0.4), (int)(displayHeight/12), FIELD_VCENTER | FIELD_HCENTER | FOCUSABLE, "Sign-In-button-off.png", "Sign-In-button-on.png");
            bbfBack.setChangeListener(backListener);
            bbfForgotPW.setChangeListener(backListener);
            bbfSubmit.setChangeListener(submitListener);
            bbfSignUp.setChangeListener(backListener);
            hfManager.add(bbfBack);
            hfManager.add(bbfForgotPW);
            vfManager.add(hfManager);
            vfManager.add(bbfLogo);
            vfManager.add(cifUser);
            vfManager.add(cifPW);
            vfManager.add(bbfSubmit);
            vfManager.add(noAccount);
            vfManager.add(bbfSignUp);
            add(vfManager);
            noAccount.setFocus();
         }
    }
    
    package oneBiteScreen;
    
    import net.rim.device.api.system.Bitmap;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.Graphics;
    /**
     * Button field with a bitmap as its label.
     */
    public class CustomBitmapField extends Field {
            private Bitmap b, bitmap, bitmapHighlight;
            private int x, y, width, height;
            public CustomBitmapField(int x, int y, int width, int height, long style, String offBitmap, String onBitmap) {
                super(style);
                this.width = width;
                this.height = height;
                this.bitmap = resizedImage(offBitmap, width, height);
                this.bitmapHighlight = resizedImage(onBitmap, width, height);
                this.b = this.bitmap;
                setPosition(x,y);
            }
            protected void fieldChangeNotify(int context) {
                try {
                    this.getChangeListener().fieldChanged(this, context);
                    } catch (Exception exception) {
                        }
                }
            protected boolean navigationClick(int status, int time){
                fieldChangeNotify(1);
                return true;
                }
            protected void layout(int width, int height) {
                setExtent(getPreferredWidth(), getPreferredHeight());
            }
            public int getPreferredWidth() {
              return width;
            }
            public int getPreferredHeight() {
              return height;
            }
            protected void onFocus(int direction){
                b = bitmapHighlight;
                invalidate();
                }
            protected void onUnfocus(){
                b = bitmap;
                invalidate();
                }
            protected void paint(Graphics graphics) {
                graphics.drawBitmap(0, 0, width, height, b, 0, 0);
            }
            public static Bitmap resizedImage(String imageName, int width, int height) {
                Bitmap actualBitmap = Bitmap.getBitmapResource(imageName);
                Bitmap resizedBitmap = new Bitmap(width, height);
                resizedBitmap.createAlpha(Bitmap.ALPHA_BITDEPTH_8BPP);
                actualBitmap.scaleInto(resizedBitmap, Bitmap.FILTER_LANCZOS, Bitmap.SCALE_STRETCH);
                return resizedBitmap;
            }
    }
    

    Two immediate things:

    (1) for your main problem replace drawFocus nothing to do:

    protected void drawFocus(Graphics g, boolean on) {
    }
    

    (2) onUnfocus is not always called by the framework (it's a bug I've seen several versions of BlackBerry OS). You are much better to use FieldChangeListener for switching of bitmaps depending on the State concentrate/blurry.

  • Why the FF Web page now have an icon that says "click me"?

    Yesterday the FF browser Web page open with its usual icon and "suggestions".

    When I opened it earlier today the FF icon itself was not clearly defined (asymmetrical), and there is an icon that says 'click here' (this icon was also biased).

    I thought that perhaps I was prompted to update to FF, so I checked and 'yes', found that I needed to upgrade to Version 33. The download has been extremely slow, and the menu of the FF browser continues to display the icon "biased" FF, in addition to the other "asymmetrical icon" that says only 'click here' (don't tell what I'm clicking on). I have never had this problem before and it's only a
    temporary glitch.

    WHAT HAPPENED TO FIREFOX? I've never had these problems before.

    edmeister and cor - el: I notice that now, this problem no longer exists because Firefox is more this watch. I sincerely thank you two for
    your suggestions.

    COR - el, I thank very you much for all your help in the past and in the
    number of messages that I have reviewed with a resolution provided by you!

  • I have blocked all the Web pages of my University by accident.

    Thanks for your help. I was on the site of Blackboard at my University (I'm an instructor) and was trying to listen to the podcast of student assignments. An icon like a lego brick appeared with the message 'a plugin is required to play this content. At the top of the icon is a little link that says "block X".

    I clicked on this link, assuming that he would allow me to 'unlock' the material. In this window of Firefox I asked for any material domain name www.nd.edu.au at my University to be unlocked, but now I've lost all access to all of its pages. Looks like I have everything blocked by mistake.

    I searched all add-ons, but cannot work out what tool is being accessed down. I don't have a lot of plugins. Those who are activated are: Addobe AAM detect; Help browser by default; Flip4Mac Windows Media plugin. Java applet; SharePoint browser plug-in; Shockwave Flash. and Silverlight.

    It does not resemble a parental control setting Mac, I can navigate to these pages in Safari. In addition, starting Firefox in safe mode returns all access.

    I looked online for answers also.

    I would be grateful for any help.

    If you use extensions (Firefox/tools > Modules > Extensions) which can block content (e.g., Adblock Plus, NoScript, Flash Block, Ghostery) then make sure that these extensions are not blocking content.

    If it works in Mode safe mode and normal mode with all extensions (Firefox/tools > Modules > Extensions) off and then try to find which extension is the cause by allowing an extension at a time until the problem reappears.

    Close and restart Firefox after each change via "Firefox > Exit ' (Windows: Firefox/file > quit;) Mac: Firefox > quit Firefox. Linux: Firefox/file > exit)

    You can control and manage permissions for all areas on the Subject: authorizations page.

    You can control and manage permissions for the domain in the tab currently selected through these steps:

    • Click on "Site Identity" (globe/lock) in the address bar
    • Click on 'More information' to open ' tools > Page Info "with the Security tab is selected
    • Go to the permissions tab (Tools > Page Info > permissions) to check the permissions for the domain in the currently selected tab

    Delete the permissions.sqlite file to reset all the permissions.

    You can use this button to go to the Firefox profile folder currently in use:

  • Mozilla web pages are white with text black\blue & netflix does not work Win10

    Use Firefox to work fine but now it isn't (currently version 39)
    At first I noticed that netflix produced an error when I tried to start the playback of a video, but after I uninstall firefox and remove all profiles she won't even let me visit the web page by giving this error

    The secure connection failed
    An error occurred during a connection to http://www.Netflix.com/. The peer certificate has an invalid signature. (Error code: sec_error_bad_signature)
    The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.

    The other problem I've noticed is that some web pages are not correctly such as Mozilla forums is just a white text background blue and white

    I tried every evening 64-bit laptop same problem
    Crome\Explorer work well

    Thank you

    The difference between Firefox and IE/Chrome, is that IE/Chrome share the Windows certificate store. Firefox has its own certificate store. (That you have deleted by removing your profile.)

    This error can be caused by a series of questions, but generally, certificates are generated by an intermediary such as a proxy server, your security or malware software. We look at who it is.

    Q: do you use Avast, ESET, Kaspersky or BitDefender, or browse through a proxy?

    If you have sites where you have created a security exception, like this site, check the certificate for more information on its transmitter. You can click on the padlock (or grey warning triangle) in the address bar, and then more than information, and then display the certificate. The areas to check are "issued by" and "hierarchy of certificates. I've attached a screenshot of this site as an example of screen. If you can't view it in Firefox, you can use Chrome. I have attached this example, too.

    What do you see?

    Note: Firefox for Windows 10 support will be more complete version 40 which, if you're an early adopt, you can try in beta. I do not recommend nightly. https://www.Mozilla.org/Firefox/beta

  • Items imported .ai graphics suddenly have white background

    I have restarted my machine just this morning, placed a chart .ai with no fill in my InDesign document that have probably 10,000 times since it came out and suddenly without reason the entire page of the .ai file area is white. 2 days ago, everything was fine. No change to anything. If I shoot an old file a month ago with .ai files placed as they are transparent as they should be. If I place one of the files .ai transparent which is already in the document again, it comes with a white background. It has now 2 instances of the same file exact .ai with all the exact settings of each graphic placed in InDesign and InDesign is suddenly made one with a white background and the other with a transparent background.

    Display settings are high quality with no checked item level.

    PDF file, made from the InDesign file indicates the graphic up again with a white background and original as transparent is not a problem of display.

    iMAC system 10.6.8

    InDesign 7.0.4

    12 GB of RAM with 8 GB of free

    Any ideas why this could happen suddenly?

    Display options when you place the I / PDF and choose transparent background.

    Bob

  • Why did my web page jump down and search for programs and files on my computer analysis at the same time? This happens on a regular basis.

    I ran scans for malware with malwarebytes and microsoft windows defender and all have developed negative. Also did a clean reinstall of the windows operating system. With the help of a new mouse that works fine on another computer. Am not touch anything on the keyboard when it arrives. It is really strange, when the web page I'm on (the fact on any web page) jumps down. When it happened, I reduced to a minimum the web page and notice that, down to left, research programs, and cursor files under windows 7 is quickly back and forth its own. When this behavior ceases web pages stay normal.

    "When it happened, I reduced to a minimum the web page and notice that, down to left, research programs, and cursor files under windows 7 is quickly back and forth its own. When this behavior ceases web pages stay normal. "

    What that looks like?

    Have you tried safe mode?
    Try Firefox Safe mode to see if the problem goes away. Firefox Safe mode is a troubleshooting mode that temporarily disables hardware acceleration, restores some settings and disables add-ons (extensions and themes).

    If Firefox is open, you can restart Firefox Safe mode in the Help menu:

    • Click the menu button

      click Help

      then select restart with disabled modules.

    If Firefox does not work, you can start Firefox in Mode safe as follows:

    • On Windows: Hold down the SHIFT key when you open the desktop Firefox or shortcut in the start menu.
    • On Mac: Hold the option key during the startup of Firefox.
    • On Linux: Exit Firefox, go to your Terminal and run firefox-safe-mode
      (you may need to specify the installation path of Firefox for example/usr/lib/firefox)

    When the Firefox Safe Mode window appears, select "start mode safe."

    If the problem is not present in Firefox Safe Mode, your problem is probably caused by an extension, theme or hardware acceleration. Please follow the steps described in the section Troubleshooting extensions, themes and problems of hardware acceleration to resolve common Firefox problems to find the cause.

    To exit safe mode of Firefox, simply close Firefox and wait a few seconds before you open Firefox for normal use again.

    When find you what is causing your problems, please let us know. This might help others with the same problem.

  • Setting to open all new web pages "full width inside". I do not mean "full screen".

    You can use "control +" to make a web page expand to fill the width of the screen. If you clear your history of this 'size' will be remembered the next time that you open the web page. I want to new web pages to automatically fill the entire width of my screen when I load them. Ideally, I have clear my history, I want all web pages to fill the entire width of my screen. I do not mean "full screen". I don't know if all browsers has this same question.

    The Firefox Page Zoom feature makes a domain level by area to save favorite settings level users zoom, there is no default Page Zoom level setting in Firefox, as with some other browsers.

    Try the extension Default FullZoom Level:

    https://addons.Mozilla.org/en-us/Firefox/addon/6965

    Or the NoSquint extension:

    https://addons.Mozilla.org/en-us/Firefox/addon/2592/

  • How to stop all these web pages trying to load?

    My daughter and on 18 web pages signs trying to load, how can you stop that

    Hello

    We would like to collect information on your side, can you please answer the following questions:

    -Have there been changes to the computer or the program before this error?
    -What is the client version of parental control that you use?

    To do this, connect to the client Windows Live parental controls with the parent account, once connected, click on the questionmark icon and select parental control. The latest version is 15.4.3555.0308.

    -Can you clarify a few Web sites that opens when your daughter signs on his own?

    Thank you!

  • Some web pages have enlarged images. How do you get to mnormal size?

    Some web pages are enlarged (magnified). How do you get back normal size TSE?

    Hello

    1. Have you tried using Internet Explorer and check to the question?

    If the question is limited to Mozilla Firefox, then you can get in touch with support for Mozilla Firefox.

    http://support.Mozilla.org/en-us/home

  • Why all my file extensions have changed ink?

    My computer is almost locked, as all my file extensions have mysteriously changed in INK. I can't do a system restore yet. It's already happened, and I don't remember how I overcame it. Is this a virus? I'm stuck. SOS

    Hello
    Follow the steps described in this guide: http://www.selectrealsecurity.com/fix-programs
    If you have any questions about the instructions, just ask. Let me know if this helps you.
    Brian
  • All browsers-"Web page cannot be displayed" or "error: failed name resolution.

    I just installed Win 8.

    Network troubleshooting internet connection, network status reports shows two way traffic.
    However, when I try to go to a Web site using Chrome, Firefox, Safari I get "error name resolution failed or page cannot be displayed".
    In addition, when setting up windows registry, I used an e-mail address that I forget was more active.  How can I change?
    Thanks for your help.
    E-mail address is removed from the privacy *.
     
    Moved from feedback
    Original title: cannot display the Web page
    However, when I try to go to a Web site using Chrome, Firefox, Safari I get "error name resolution failed or page cannot be displayed".

    Try the following...
    You receive an error message in Internet Explorer: "Internet Explorer cannot display the webpage".

    http://support.Microsoft.com/kb/956196/en-us

    In addition to a public dns 8.8.8.8 for your dns settings like address in the local pc

    How to change the address of the DNS public IPv4 DNS server in Windows?

  • Why all my desktop icons have changed in PDF format when I installed the drive?

    I just installed Adobe Reader and all my desktop icons have changed and nothing does not open.  How can I fix?

    Hey carolq123,

    Could you please check the below mentioned KB doc for the same link:

    Application, the icons of file change icon Acrobat/Reader

    Let me know if it helps.

    Kind regards

    Ana Maria

  • Why all the new Comps have film as the background?

    It's the weirdest thing that ever happened to me.

    I'm working on a lower third animation project, creating animations on a small clip. Now whenever I create a new publication, it comes with this video clip as if it were the first background layer, but there is no layer, there is nothing. I have nothing to add to the mix yet!

    Screen Shot 2016-06-24 at 2.34.14 PM.png

    Purge all the cache memory and disk. You will find in the Edit menu.

Maybe you are looking for

  • Compatibility of motherboards for HP laptop.

    Agin Hello my friends HP experienced! At that time, I have a question on 2 laptops. First of all, I have a HP DV9910 us. It had Vista, which has been upgraded to win. 7. now, I had posted this question before, on the noise problem, it works well, how

  • PROBLEMAS CON PATRICK HP Deskjet 895Cxi

    Hola maestros. Tengo una HP Deskjet 895 Cxi installed y hasta the present me ha funcionado correctamente. The ultima vez as the cambie los cartuchos of tinta, understanding compatible unos, pero tuve than change the por una HP Deskjet 895Cse Emporda.

  • Windows XP is not automatically shutdown.

    Windows xp is not shutdown or hibernate automatically. It reached a point in the shutdown sequence where he stops, still displays the cursor, the power supply activted and then I have to do a manual exit ramp.

  • I scan a document on my hp printer/scanner 5510 and by attaching it to an e-mail

    Hello I have an HP5510 printer/scanner.  I need to know how to scan a document and save it to the computer and print it. Thank you AuntCaro

  • Mass storage device USB are most recognized

    Hello! I use Cavalry 1 TB drive external HARD for a year now. It was working fine until what a week ago it stopped working all of a sudden. I can see the lights are on on the device, I can hear the disc rotation, but my computer will not recognize it