Half of screen not displaying webpages

I have a galaxy player 4 and firefox beta displays the top of the webages in the middle of the screen, the top half is white... i am stock 2.3 unrooted. Could it be reading my display wrong...

Many site issues can be caused by corrupt cookies or cache. In order to try to fix these problems, the first step is to clear both cookies and the cache.
The Firefox cache temporarily stores images, scripts, and other parts of websites while you are browsing. <br>
Note: ''This will temporarily log you out of all sites you're logged in to.''
To clear cache and cookies, do the following:
#Tap the menu icon located at the top right corner. This is the icon with 3 bars. On older Android devices you'll have to press the hardware menu key and then tap More.
#Tap '''Settings'''.
#After that, you will be taken to the settings screen. In the settings screen, look under the section '''''Privacy & Security''''' and select '''Clear private data'''.
#You will then be taken to a list of what can be cleared. Select the following 2 for deletion:
#*Cookies & active logins
#*Cache
#After those have been selected, tap the '''Clear data''' button to actually clear the cache and cookies.
Did this help you with your problems? Please let us know!
Firefox Menu > QUIT
Make sure your using latest version of firefox

Similar Messages

  • Screen not displaying correctly. It keeps moving as the mouse moves

    Screen not displaying correctly. It keeps moving as the mouse moves

    Your problem is not the same as that of the original poster of this thread, and it can be very confusing for everybody if we try to answer more than one question in each thread.
    In order for us to give your problem our undivided attention to try to solve it, would you kindly start your own thread, describing the trouble you are having in the fullest detail, including completing your details to show what Mac or iDevice you are using, what operating system, and what version of the application in question. Please remember to post in the forum relevant to your hardware or version of OS X.

  • When at the "results" page of a search, clicking on "blue" link does not display webpage. Copying "green" urldoes.

    When at the "results" page of a search, clicking on "blue" link does not display webpage although url is shown in address bar. Copying "green" url, shown at bottom of a result, into address bar and hitting "enter" goes to the address and displays the page. Have tried different selections at tools/options with no change. Is there some other setting that needs to be changed?

    Sorry, this is bad reply. I wanted to write this reply to another question.

  • My screen not display propely

    i have problem wth my iPad2.the screen not display propely.pls help me

    Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple logo. Ignore the red slider.

  • Interactive report: third screen not displaying

    Hi Experts,
    I am doing a interactive report in ALV grid...and my requirement is
    when the user clicks on SPMON which is displayed on the initial screen the first screen
    should display and in first screen when the user clicks LIFNR second screen should display..
    I am able to display initial and first screen but second screen is not displaying...I am
    pasting a pinch of my code please have a look and advice me..
    FORM USER_COMM USING P_UCOMM LIKE SY-UCOMM
                               R_SELFIELD TYPE SLIS_SELFIELD.
      DATA : OK_CODE TYPE SY-UCOMM.
      OK_CODE = P_UCOMM.
      CASE OK_CODE.
        WHEN '&IC1'.
          IF R_SELFIELD-FIELDNAME = 'SPMON'.
            READ TABLE IT_TAB INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_1[].
            CLEAR IT_TAB_1.
            LOOP AT IT_FIRST WHERE WERK EQ IT_TAB-WERK AND SPMON EQ IT_TAB-SPMON
                               AND ART = IT_TAB-ART.
              MOVE IT_FIRST-WERK       TO  IT_TAB_1-WERK.
              MOVE IT_FIRST-LIFNR      TO  IT_TAB_1-LIFNR.
              MOVE IT_FIRST-MEANQ      TO  IT_TAB_1-MEANQ.
              MOVE IT_FIRST-BASME_QM   TO  IT_TAB_1-BASME_QM.
               APPEND IT_TAB_1.
              CLEAR: IT_FIRST, IT_TAB_1.
            ENDLOOP.
            REFRESH IT_FIELDCAT1[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT1
            USING:
              'IT_TAB_1' 'WERK' ' ' 'PLANT' ' ' ' ',
              'IT_TAB_1' 'LIFNR' ' ' 'VENDOR NUMBER' ' ' ' ',
              'IT_TAB_1' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
              'IT_TAB_1' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               I_CALLBACK_USER_COMMAND             = 'USER_COMM_1'
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT1[]
             TABLES
                T_OUTTAB                          = IT_TAB_1[]
          ENDIF.
      ENDCASE.
    ENDFORM.                    "USER_COMM
    For second screen : which is not working
    FORM USER_COMM_1 USING P_UCOMM LIKE SY-UCOMM
                               R_SELFIELD TYPE SLIS_SELFIELD.
      DATA : OK_CODE TYPE SY-UCOMM.
      OK_CODE = P_UCOMM.
      CASE OK_CODE.
        WHEN '&IC2'.
          IF R_SELFIELD-FIELDNAME = 'LIFNR'.
            READ TABLE IT_TAB_1 INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_2[].
            CLEAR IT_TAB_2.
            LOOP AT IT_SECOND WHERE WERK EQ IT_TAB_1-WERK AND
    SPMON EQ IT_TAB_1-SPMON AND ART = IT_TAB_1-ART AND LIFNR = IT_TAB_1-LIFNR.
              MOVE IT_SECOND-ART        TO  IT_TAB_2-ART.
              MOVE IT_SECOND-SPMON      TO  IT_TAB_2-SPMON.
              MOVE IT_SECOND-MATNR      TO  IT_TAB_2-MATNR.
                   APPEND IT_TAB_2.
              CLEAR: IT_SECOND, IT_TAB_2.
            ENDLOOP.
            REFRESH IT_FIELDCAT2[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT2
                    USING:
                      'IT_TAB_2' 'MATNR' ' ' 'MATERIAL NUMBER' ' ' ' ',
                      'IT_TAB_2' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
                      'IT_TAB_2' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT2[]
              TABLES
                T_OUTTAB                          = IT_TAB_2[]
          ENDIF.
      ENDCASE.
    ENDFORM.                    "USER_COMM_1
    Please advice
    Karthik
    Edited by: Karthik R on Apr 29, 2009 12:22 PM

    Use both conditions in USER_COMM.
    FORM USER_COMM USING P_UCOMM LIKE SY-UCOMM
                               R_SELFIELD TYPE SLIS_SELFIELD.
      DATA : OK_CODE TYPE SY-UCOMM.
      OK_CODE = P_UCOMM.
      CASE OK_CODE.
        WHEN '&IC1'.
          IF R_SELFIELD-FIELDNAME = 'SPMON'.                      " Field name SPMON
            READ TABLE IT_TAB INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_1[].
            CLEAR IT_TAB_1.
            LOOP AT IT_FIRST WHERE WERK EQ IT_TAB-WERK AND SPMON EQ IT_TAB-SPMON
                               AND ART = IT_TAB-ART.
              MOVE IT_FIRST-WERK       TO  IT_TAB_1-WERK.
              MOVE IT_FIRST-LIFNR      TO  IT_TAB_1-LIFNR.
              MOVE IT_FIRST-MEANQ      TO  IT_TAB_1-MEANQ.
              MOVE IT_FIRST-BASME_QM   TO  IT_TAB_1-BASME_QM.
               APPEND IT_TAB_1.
              CLEAR: IT_FIRST, IT_TAB_1.
            ENDLOOP.
            REFRESH IT_FIELDCAT1[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT1
            USING:
              'IT_TAB_1' 'WERK' ' ' 'PLANT' ' ' ' ',
              'IT_TAB_1' 'LIFNR' ' ' 'VENDOR NUMBER' ' ' ' ',
              'IT_TAB_1' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
              'IT_TAB_1' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               I_CALLBACK_USER_COMMAND             = 'USER_COMM_1'
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT1[]
             TABLES
                T_OUTTAB                          = IT_TAB_1[]
          ELSEIF R_SELFIELD-FIELDNAME = 'LIFNR'.              " ELSE FIELDNAME LIFNR
            READ TABLE IT_TAB_1 INDEX R_SELFIELD-TABINDEX.
            REFRESH IT_TAB_2[].
            CLEAR IT_TAB_2.
            LOOP AT IT_SECOND WHERE WERK EQ IT_TAB_1-WERK AND
            SPMON EQ IT_TAB_1-SPMON AND ART = IT_TAB_1-ART AND LIFNR = IT_TAB_1-LIFNR.
              MOVE IT_SECOND-ART        TO  IT_TAB_2-ART.
              MOVE IT_SECOND-SPMON      TO  IT_TAB_2-SPMON.
              MOVE IT_SECOND-MATNR      TO  IT_TAB_2-MATNR.
                   APPEND IT_TAB_2.
              CLEAR: IT_SECOND, IT_TAB_2.
            ENDLOOP.
            REFRESH IT_FIELDCAT2[].
            S_LAYOUT-ZEBRA = 'X' .
            S_LAYOUT-COLWIDTH_OPTIMIZE = 'X' .
            PERFORM FIELD_CATALOG1 TABLES IT_FIELDCAT2
                    USING:
                      'IT_TAB_2' 'MATNR' ' ' 'MATERIAL NUMBER' ' ' ' ',
                      'IT_TAB_2' 'MEANQ' ' ' 'MEANQSCORE' ' ' ' ',
                      'IT_TAB_2' 'BASME_QM' ' ' 'BuM' ' ' ' ',
            CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
             EXPORTING
               I_CALLBACK_PROGRAM                = SY-CPROG
               IS_LAYOUT                         = S_LAYOUT
               IT_FIELDCAT                       = IT_FIELDCAT2[]
              TABLES
                T_OUTTAB                          = IT_TAB_2[]
          ENDIF.
      ENDCASE.
    ENDFORM.                    "USER_COMM
    Regards,
    Gurpreet

  • Variable Screen not display in Web

    Hi all
           When i execute  the Query ZBP02_Q001 in Web, the Variable Input Screen  of the Query is not display first,but display the content of the ZBP02_Q001 directly in the Web. All of the Varibale is not mandatory;
    i am using BI 7.0;
          Anyone can give a help!
      Thanks in advance.

    Hi Cao,
    May be your infoobject are holding constants, which led to direct execution without the selection screen.
    Inorder to get the selection screen, select the infoobject and make its settings as optional and it will be displayed in your selection screen.
    So whenever you use optional for an infoobject, that specific infoobject alone will appear on the selection screen.
    Regards
    Thenmuga Selvan

  • Captivate 6 Slide Audio screen not displaying correctly

    Upon trying to rerecord a slides's audio today this screen opened up - I could record, but not save because the save button is not displaying.  I was able to record new audio on the same project on Friday.  I tried deleting and recodring new audio and the same screen came up.  I tried a different project - same thing happened.  I rebooted twice.  Any ideas?
    Thanks!
    Rachel

    Hello,
    If you check the address bar of your screenshot, you will see that you are in "C:\Documents and Settings\[user name]\Application Data\Adobe" folder
    Might be a possiblity that "Local Settings" folder is hidden, click on Tools -> Folder Options, under View tab, you have the option to "Show hidded files and folders"
    You will see Local Settings folder once you click on OK, then you can access C:\Documents and Settings\[user name]\Local Settings\Application Data\Adobe and rename "Captivate 6.0" folder.
    Hope this helps !!
    Thanks,
    Vikram

  • Outlook web login screen not displaying correctly on Exchange 2007 service pack install

    Hello everyone,
    I believe our exchange server installed a service pack 3 update and after rebooting the server, we noticed that the Outlook web access login screen is not displaying correctly.  The page looks white with some black X's (I think that's where the
    pictures/background images used to be).  We tried to restart the ISS service with no luck.  I would appreciate any help you guys can provide.
    Thanks,
    Brian Kourdou

    Hi,
    I have seen this issue in another similar thread, that issue was solved by re-creating the OWA virtual directory.
    Please try the following steps to solve this issue.
    Open EMC, navigate to Server Configuration -> Client Access, under Outlook Web App tab, double-click owa (default web site) properties.
    Then check InternalURL, ExternalURL, Forms-Based Authentication settings ect
    Open EMS, use Get-OwaVirtualDirectory get the list of virtual directories and identify the directory which is giving the problem.
    Remove it with this command
    Remove-OwaVirtualDirectory “owa (Default Web Site)”
    Now create it again with the following command
    New-OwaVirtualDirectory -OwaVersion “Exchange2007″ -Name “owa (Default Web Site)”
    Then configure the “owa” virtual directory settings like InternalURL, ExternalURL, Forms-Based Authentications etc… & check the OWA by logging with some test users.
    Best Regards.
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]
    Lynn-Li
    TechNet Community Support

  • IPad air screen not displaying correctly

    My iPad Air screen has recently started displaying with a pink hue in two of the corners, showing as a medium sized oval in one corner and a small circle in the other. There are also some vertical pink streaks that are less marked. It's really noticeable when the screen is displaying a white background. The only recent changes I have made is downloading the new IOS 8 update. There has been no trauma or damage to the iPad. It is still covered under the 1 year limited warranty. is there any way to fix this in my own?! Thank you!

    Hello there katelynlc,
    It sounds like you have some graphical anomolies on your screen that have a pink hue. If it is a software issue it will be resolvable by either first resetting the iPad:
    Turn your iOS device off and on (restart) and reset
    To reset, press and hold both the Sleep/Wake and Home buttons for at least 10 seconds, until you see the Apple logo.
    Or backing up and restoring your iPad as a new device:
    iOS: How to back up your data and set up your device as a new device
    If restoring as new does resolve it, restore your backup and verify it still works. 
    If not, then the iPad will need service:
    iPad Repair and Service - Apple Support
    Thank you for using Apple Support Communities.
    All the very best,
    Sterling

  • Qosmio X305 screen not displaying like my desktops LCD screen

    My screen seems to be displaying dull images.
    I'm kinda concerened, because it's an LCD screen, and its not displaying like my desktops LCD screen.
    I put the brightness up, and that helped to see the images better, but they still are not of the quality they should be.
    Is there a way to fix this? Or is that just how it is?

    Many Desktop LCD Monitors can get very bright, much brighter than most notebooks. So it may just be how it is. Perhaps you could go to the shops and compare it to other X300's on display.
    Try resetting or modifying the Contrast/Colour/Brightness settings in the nVidia control panel.

  • Z1 screen not displaying

    I had taken mobile 3 days ago..But now i am facing problems that is screen is not displaying but phone is working. What is the reason for it.

    Hi vinnu,
    Welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    This may be related to a software based issue, I first suggest that you hold down the Power Key and Volume Down key together and restart the handset.
    If this has not affect then I can only suggest that you try performing a software repair on the handset, this can be done by doing the following
    PC Companion
    To repair the phone software
    1.     Install PC Companion on a Windows PC from Support 
    2.     In PC Companion, under Support Zone and click Start. 
    3.     Under Phone Software Update, click Start.
    4.     Click repair phone.
    5.     Follow the on-screen instructions. 
    I apologize for any inconvenience this may cause.
    Don't forget to mark posts that answers the topic as Accepted Solution. 
    If you find any post helpful, press Kudos.
    What are your thoughts about this forum? Let us know by doing this short survey.
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • Safari is not displaying webpages correctly

    HELP! Safari does not display certain webpages correctly. I also have this problem with internet explorer. For instance, in Yahoo I expect to see certain icons with the ability to change color and text, but none of the boxes are displayed as they should be when using a PC. Most recently, I have a problem with a blog webpage that does not display all of the text editing functions. Instead I get all of the html script or java script text (not sure which one). It is really frustrating.
    Please help!

    Some common sites have text editing functions that can only be used from a Windows system. Most likely all you can do is complain to them about it. As for the blog, no one can possibly help you without a url, so they can see what the problem might be.

  • 2006 Mac Pro + NEC 3090 - grey screen not displayed during boot

    I have a September '06 Mac Pro 1,1 (Woodcrest variant) hooked up to an NEC 3090 30" LCD monitor, running OS X 10.5.7. Previously, I was using an Eizo S2110W 21" LCD; turning the monitor and computer on would cause the following to be displayed (in order):
    1. Light grey background with dark grey Apple logo with spinning thing.
    2. Solid blue background.
    3. Leopard wallpaper.
    4. Log-in dialogue.
    Since using the NEC, the grey screen is not displayed at all: the display stays blank until the blue screen is displayed, and then the Leopard wallpaper and so on. This is using the 2560x1600 native resolution of the display, and has occurred using both 10.5.6 and 10.5.7.
    If I change the resolution to 1280x960 and boot, the grey screen is displayed. If I change it to 1600x1200, I get weird corruption on-screen during the period when the grey screen should be displayed; for some reason, this includes part of the desktop wallpaper I was using before I rebooted.
    Resetting the non-volatile RAM using Command-Option-P-R works for the very first time I boot the computer, though the grey screen is displayed at very low resolution. If I reboot from the log-in dialogue immediately afterwards, normal behaviour occurs - i.e. the blank screen.
    The upshot of all of the above is that if I want to boot into Windows, or install OS X (e.g. when Snow Leopard comes out), I have to remember to boot into my existing OS X installation, change resolution, reboot whilst remembering also to hold down the ALT/Option key. It would be much easier if I could do away with having to change resolution.
    I have tried connecting the monitor to a PPC Mac mini at 1600x1200 (it won't go any higher), using Tiger 10.4.11 (not sure of exact version - the latest). At this resolution, the grey screen is displayed.
    Using a '08 MacBook Air (first generation) and the supplied DVI adapter, also at 1600x1200, nothing is displayed on the NEC until I get to the log-in screen. This occurs if the NEC is set to be the primary display or the secondary one - the only difference is where the log-in dialogue is displayed. I am not familiar with dual-screen behaviour, so I can't say whether anything is supposed to be displayed or not (i.e. does the grey appear on both displays?).
    I have been in touch with NEC Europe support on this issue, who suggested it might have something to do with the 10.5.7 release. I know this not to be the case, as it was occurring prior to 10.5.7 being released.
    Any ideas?

    Put more of your hardware listed in your profile.
    I looked and don't see you list your graphics card anywhere.
    Graphic card it came with was either X1900 (watch for heat and dust bunnies and clogged vent);
    OEM 7300GT (seems unlikely).
    You could have replaced either with 8800GT or ATI 3870.
    Require 10.5.2+ ideally 10.5.6+.
    Some problems cropped up with 10.5.7. 10.5.7 doesn't work on some (many) 3rd party displays and stay with 10.5.6 if necessary until it is fixed or resolved.
    But you say it happens with 10.5.6 also, and was doing so before 10.5.7? which makes your problem somewhat different or unique.
    Zapping PRAM or NVRAM reset obviously shouldn't be needed repeatedly. And your graphics card probably needs to be replaced, or test with another card to rule it out.

  • My mac is connected but will not display webpages

    My mac says I'm connected to wireless interent, but will not display the webpage. It says that it is not connected to the interent. My hp computer is working though. Does anyone know what is causing it not to connect to the interent and what I can do to get it to connect?
    Thanks

    Make sure in the network settings that you arent trying to connect to the internet through a Proxy server, unless you actually are of course. Make sure the connection you are using is set to get its IP address via DHCP automatically, and that the router you are connecting to is set up to do so.

  • HT1923 i cannot redeem itunes card will not display webpage

    I cannot redeem Itunes gift card.  Says Internet Explorer cannot display webpage.  Currently using Windows Vista Home Premium and have never had this problem before now.  Tried to repair Itunes from Download Itunes button and will not install Itunes either.  I get an Interrupted notice. 

    Could be a counter feit card, but most likely you are reading/entering it wrong. Anyhow, the iTS can sort it out, though you may have to scan in the back of the card and send it in:
    iTunes Store Support
    http://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • Transferring from g3

    hello i have recently joined the 21st century and purchased a gently used one year old imac g5. i need to transfer files from my 10 year old g3 running on os 9.1 (specifically my entourage address book). the g3 doesn't have a working monitor. is it p

  • Overriding error window while using a template to tag Metadata

    We have created a custom panel to tag hard drives of still images and everything is working as expected with the following exceptions:  1)  When we select thousands of images on the hard drive to apply a metadata template, we get random error message

  • Problem with Import Manager Batch

    Hi All I am facing problem when I am running my Import manager batch. When I am executing my batch file after doing all required configurations its executing without doing anything. When i see the log file for the same its saying - 7796 2007/03/15 18

  • Adobe Presenter 10 not showing up in MacBook Air PPT

    I just downloaded Presenter 10 for my Mac.  After installing it and restarting my computer, Presenter 10 did not show up in PPT.  I'm running Yosemite.  What suggestions do you have to get it running? Thanks. Alicia

  • Multiple exchange rates

    Hi friends Need some help with below issue. Say I have Mat123 at euro 10.00 and when customer orders in £ it is 12.00. Now if there is fluctuation in exchcange rate the price for customer will change. However they don't want that happening. they want