Facebook goes to "text" only no color, no graphics just Left Justified Black Text...... Help please I need it badly

Facebook goes to Left justified black "text"only no color, no graphics, kind of reminds me of DOS... not sure what is happening. I can't even contact Facebook Help, it's the same situation black left justified text only Any Help is Greatly Appreciated
John Finzel
[email protected]

Clear the cache and the cookies from sites that cause problems.
"Clear the Cache":
* Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
"Remove Cookies" from sites causing problems:
* Tools > Options > Privacy > Cookies: "Show Cookies"
Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
*Don't make any changes on the Safe mode start window.
*https://support.mozilla.com/kb/Safe+Mode
*https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
See also:
*http://kb.mozillazine.org/Website_colors_are_wrong
*http://kb.mozillazine.org/Websites_look_wrong

Similar Messages

  • b font color ='red' Java JDBC and Oracle DB URGENT HELP PLEASE /font /b

    Hello, I am a newbie. I'm very interested in Java in relation to JDBC, Oracle and SAP.I am trying to connect to an Oracle DB and I have problems to display the output on the consule in my application. What am I doing wrong here . Please help me. This is my code: Please Explain
    import java.sql.*;
    import java.sql.DriverManager;
    import java.sql.Connection;
    public class SqlConnection {
         public static void main(String[] args) {
              Class.forName("oracle.jdbc.driver.OracleDriver"); //Loading the Oracle Driver.
              Connection con = DriverManager.getConnection
              ("jdbc:orcle:thin:@34.218.5.3:1521:ruka","data","data"); //making the connection.
              Statement stmt = con.createStatement ();// Sending a query to the database
              ResultSet rs = stmt.executeQuery("SELECT man,jean,test,kok FROM sa_kostl");
              while (rs.next()) {
                   String man = rs.getString("1");
                   String jean = rs.getString("2");
                   String test = rs.getString("3");
                   String kok = rs.getString("4");
                   System.out.println( man, jean, test,kok );//here where my the
                                                 //compiler gives me errors
              stmt.close();
              con.close();
    }

    <b><font color ='red'>Java JDBC and Oracle DB URGENT HELP PLEASE</font></b>Too bad your attempt at getting your subject to have greater attention failed :p

  • HT2045 I bought a song, which played on my computer. When I tranfered it to my IPod,only the first 30 seconds of the song plays. Help please!

    Please help me.  I bought a song which played on my computer, but when I tranfered it to my IPod, only the first 30 seconds of it will play. Help please. Is there a way I can contact Apple to complain, because I'm not paying $1.29 for the first 30 seconds of a song. Or is there anyway to fix it? (note: i have already synced my Ipod and it has the latest version of ITunes)

    Im having a similar promblem! Only its doesnt work on my Itunes library and the song ends at 49 seconds. Have you fixed your problem yet?
    p.s. my discussion is on the following page but no one has responded yet as I only just posted it.
    https://discussions.apple.com/thread/4097402

  • Reset phone to factory settings to remove unwanted email addresses from autofilling.  Now trying to only sync real contacts, photos, and apps from backup.  HELP PLEASE!  :)

    Reset phone to factory settings to remove unwanted email addresses from autofilling.  Now trying to only sync real contacts, photos, and apps from backup.  HELP PLEASE! 

    All of this should be on your computer as you should be syncing regularly to your computer.. Just sync it back.
    iPhone User Guide (For iOS 4.2 and 4.3 Software)

  • In my group text one of my friends texts is pink while everyone else has the standard black text. Why is this?

    in my group text my friend has pink text while everyone else has the standard black text. why is this?

    Hi,
    You can change it in several ways.
    In Messages > Preferences > Viewing you can change your outgoing background (Balloon) colour, which then gives you access to change the Font and it's text colour.
    This works Mac to Mac in Messages using any service (iMessages, AIM, Jabber, Bonjour and yahoo).
    iMessages users on iOS devices will not see it as it does not do coloured Balloons  (the App only colours your outgoing ones to tell you if it is SMS or iMessages but does not send the colour)
    You can also change individual IMs or iMessages by using the Format menu (Show Font and Show Colours)
    And as Eric says there is the Keyboard/Contextual Menu method.
    As lots of yours are "white" I presume this is iMessages on several iPhones and one computer.
    iChat (the forerunner to Messages used to attribute random colours to incoming IMs in a group chat so they (people) looked different.
    This can't be done in Messages 7 and 8
    9:11 pm      Sunday; June 15, 2014
    ​  iMac 2.5Ghz i5 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

  • How do I left justify the text in the tabs of a JTabbedPane.

    In 1.3.1 this used to work by supplying an HTML string with <div align="left"> but when I run with 1.4.1 this is now broken and I get center justification.
    Does anybody know a way to get the text in the tabs to be left justified.
    Thanks,
    Philip

    First, I found while using JTabbedPane that the "standard" behavior is to allow to a tab the exact space needed to display the tab text. Hence with this behavior, there is actualy no difference of "left" or "center" aligned text. So I assumed that you found a way or another to make your tabs wider than the "string width"...
    Here is a solution:
    You can override the TabbedPaneUI class and ajust the "layoutLabel()" method. Here is the code..
    //Your code using the tabbedPane
    JTabbedPane tp = new JTabbedPane();
    tp.setUI(new LeftTabbedPaneUI());
    //File containing the overrided TabbedPaneUI
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.text.View;
    class LeftTabbedPaneUI extends javax.swing.plaf.metal.MetalTabbedPaneUI {
            //I also overrided this function just to force tabs wider than
            //the displayed "String Width". I asume that you found another
            //way to do this so you can delete this function in your
            //implementation
         protected int calculateTabWidth(int tabPlacement, int tabIndex, FontMetrics metrics){
              return 150;
        protected void layoutLabel(int tabPlacement,
                                   FontMetrics metrics, int tabIndex,
                                   String title, Icon icon,
                                   Rectangle tabRect, Rectangle iconRect,
                                   Rectangle textRect, boolean isSelected ) {
            textRect.x = textRect.y = iconRect.x = iconRect.y = 0;
         View v = getTextViewForTab(tabIndex);
         if (v != null) {
             tabPane.putClientProperty("html", v);
         //This Line is added to avoid writing on tab border while aligned to left.
         //You can comment this line to test and or adjust the "5" pixel space
         Rectangle rec = new Rectangle(tabRect.x+5,tabRect.y,tabRect.width,tabRect.height);
            SwingUtilities.layoutCompoundLabel((JComponent) tabPane,
                                               metrics, title, icon,
                                               SwingUtilities.CENTER,
                                               SwingUtilities.LEFT,
                                               SwingUtilities.CENTER,
                                               SwingUtilities.TRAILING,
                                               rec,
                                               iconRect,
                                               textRect,
                                               textIconGap);
         tabPane.putClientProperty("html", null);
         int xNudge = getTabLabelShiftX(tabPlacement, tabIndex, isSelected);
         int yNudge = getTabLabelShiftY(tabPlacement, tabIndex, isSelected);
         iconRect.x += xNudge;
         iconRect.y += yNudge;
         textRect.x += xNudge;
         textRect.y += yNudge;
    }Here I overrided the "Metal" implementation of the tab but you must override the implementation of the used Look And Feel,
    ex. "com.sun.java.swing.plaf.window.WindowsTabbedPaneUI" for the windows LAF.

  • Displaying left justified readonly text

    Anyone have any ideas as to how we can display readonly text left justified?
    Form doesn't cut it because everything is centered, and I don't need labels to display my data.
    TextBox doesn't cut it, because I don't want the data to be editable.
    Canvas... Man talk about a head ache. First there is NO title bar (like the rest of the application, so I would need to draw one first), and then I would have to implement all of the line wrapping, and scrolling etc.
    I even thought about alert, but feel it would probably look ghetto.
    I just want a textbox that isn't editable. Anyone have any thoughts

    Why do you blame the Form? It has alignment options and i guess default is left-aligned (why centered???) Then use String to append the string to a form.
    String s = new String("Blablabla");
    myform.append(s);
    I have already used this approach to display readonly text. The one thing i don't like is that the form scrolls the text screen by screen, not line by line. Does somebody knows how to scroll line by line?

  • I bought a gift card n reedem it , showed the credit but not allowed me to download games apps  , i can only use it to buy film and music . Anyone help please !!

    Anyone help please !!

    The devices are not registered in Malta as such, it's your Apple ID that is registered in a country other than France, namely Malta.  You can only use gift cards from France when your iTunes Store account is registered for use in France.  That requires a credit card issued to a French bank and billed to an address in France.  I'm afraid there's nothing you can do with the card other than find a user in France who would like it.
    The iTunes Store in a country is intended only for use by that country's residents, and only while they are in the country. To use the iTunes Store in a country you need a credit card (or other card type if acceptable in a country) issued in that country, billed to an address in that country, and also be physically present in that country when using the store.  You are also restricted to waiting 90 days between country changes.
    E.g., "The iTunes Service is available to you only in the United States, its territories, and possessions. You agree not to use or attempt to use the iTunes Service from outside these locations. Apple may use technologies to verify your compliance. - http://www.apple.com/legal/itunes/us/terms.html#SERVICE"

  • TS2776 i've lost all my entries in my calendar. I was able to call them up with the magnifying glass icon . now it just goes to a search entry. and all my calendar/months have no entries. help please

    i've lost all the entries in my calendar.  i had been able to call them up with the magnifying glass list function, but now it only opens a search function and all my calendars/ entries are blank.  help please

    Lord K.  Thank you. Yes I am within the 90 time period, however I travel Intertionally and I can not receive not make a call to Apple. I was just at the Genius Bar in Chicago and they said, don't worry about it.  It just floats out there, however, I can not recover my messages on a flash drive. I need to go back to my old computer which I don't have with me.  My messages were in folders for a lawsuit.  It is going to take an incredible amount of work for me to, you have no Idea.  We are talking thousands of pages!  I the defendent will have them during discovery so I am not so worried.  However, I can not bring them to him on a Flashdrive when I meet with him without an extraordinary amount of presssure on my part.  THis is not just some little email issue. This is suing EXPEDIA and Tripadviosr.com

  • Left Justify Wrapping Text Lines in Lists

    I'm using RH9 on Windows XP, fully patched.
    I'm having a problem finalizing a few tweaks with the formatting of lists imported from FM.It took me a while to get the lists from the FM source book to import correctly, but now I have it pretty clean, with the exception of when text in the lists wraps.
    Currently, if there is a second line that wraps, it justifies with the list element (number, letter, bulelt, etc.) on the left. However, I would like it to justify itself on the left with the first sentence.
    I've managed to fix this easily while authoring natively in RH by adjusting the multilevel list styles. But I'm unclear about how to do this with the style mapping from FM>RH.
    I'm mapping the original FM style to a RH paragraph style and indicating in the mapping properties to "Convert Autonumber to RoboHelp List." I see the option to edit the list properties in the RH paragraph style I map to, but it doesn't go as deep in terms of options as the multilevel list style edit dialogue. I know you can associate the paragraph style with a multilevel list, but it was such a nightmare to get this working as it is, I'm remiss to do anything without some direction.
    Thanks in advance,
    Douglas

    Thanks Jeff, I'm not getting the results I want from those selections.  RoboHelp List actually removes my bullets entirely.  HTML list correctly formats the bullets but then places text 1 or 2 lines below instead of aligned with the bullet .  The only way I can get a bullet and text to align is by selecting Convert Autonumber to Text.  Using this selection, RH places a small square bullet, ignoring whatever I set in the CSS (eg. list-style-type: desc;).  The text wrap should be handled by list-style-position: inside; but RH is ignoring W3C conventions and using a default that is not configurable.  I understand RH is not W3C compliant so then what logic is RH using?  Regardless of what setting is selected for lists, RH overrides my custom style sheet settings.
    There is no way to map a style to another style in RH9 as far as I can see. RH9 allows you to make style setting adjustments in the [Source] but those bullets do not format correctly either (formatting-->indents-->bulleted list icon/button).
    I have checked my FrameMaker template source and don't see what could be contributing to the problem.  Those bullet styles are standard for FM, round and with the exact layout I want in my RH output.  RH seems to want to re-adjust that to its own default. 
    Any insights would be appreciated.
    Thanks

  • Am trying to sign into iTunes store only access half way then blank that's it anyone help please

    Hi anyone can help with my iTunes am trying to sign in but only goes half way then blank white nothing happens

    Here's a possible fix for Error 11503 and for error 50.
    It worked for me and hopefully it will work for you.
    I believe this error is caused by the incomplete downloading of either an update to an app, or perhaps a big music file. In my case it was caused by closing the lid on my laptop when I was downloading app updates on a very slow internet connection in a hotel.
    Anyway, here is what I did that fixed it completely.
    Close iTunes.
    Go to this folder : /iTunes/Mobile Applications/Downloads
    You'll find tmp files there. Drag them out of this folder to a temporary folder on your desktop. The Downloads folder should now be empty.
    Restart iTunes.
    All should be fine.
    If it's not, then I can't help further, but that's what worked for me.

  • I want to get rid of my Facebook ads that just showed up in mainpage help Please

    I really did not expect to find Ads on My facebook wall or main page since I had not seen them before ,then a few days ago wham!! I got them crawling everywhere I can't find my friends posts with out scrolling long time lol Some one out there must know whats going on.

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    *http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • TA44469 i have a video that plays on my iphone, but when downloaded to windows, only the audio plays and the video is black.  help,

    i have an iphone 4s.  I can take a video and play it on the 4s just fine, i have always been able to down'load to my pc and view videos with no trouble.  But since mid-october 2012, when i download the video to my pc, and try to play it, same as always,  I am getting only audio and the video part is black.  I can hear everything happening, but no picture.  any thoughts?

    Try updating to QuickTime 7.7.3. (That has helped a few people who were getting that when trying to play the videos with version 7.7.2.)

  • ITunes does only sync photo's but not music and video. Help please

    I have loaded ios5 on both my iPad and my iPhone4. For about a week, all worked fine and i restored my music, video's and photo's.  However since about a week,  music and viceo's are removed from the iPhone. That was after the change from summer- to winter-time. And iTunes does not want to sync them back to the phone.  On my iPad all is still there. I looked at my settings and the only difference between the iPad and the iPhone is that on the iPhone i see a switch for iTunes Match, but that does not work in my country yet.  When i look in the left column of iTunes i see my music marked under the musicdirectory of my iPhone,  but with a sych mark. ( the little circle).  So i can add and remove photo's,  but not music or video items.  Has anyone an idea what to do?
    By the way, all my other stuff(agenda, notes etc.) are synched thru iCloud.

    Are you viewing on 'Videos' or did you find it in your music list?

  • Only hear 8 mins of audio after dvd being burned. help please

    i keep trying to burn an avi file to idvd, but once its burned only the first 8 minutes of audio can be heard after that video looks fine but it becomes a silent film, i called apple and they said to go to advanced and click on delete encoded assets and that should fix the problem, but it didint. Has anyone had this problem and if so did you find a way to fix it?
    id appreciate any help!
    Thanks in advance

    There's a known issue with 12 bit audio and iDVD. But its issue is syncing when encoded. It's unlikely that's the issue but it might. That's out of my area. See these topics: Re: Audio not in sync, Re: Audio sync problem when burning to DVD and So many audio problems.
    They might have a suggestion you can try. Have you tried the disk image route yet?

Maybe you are looking for

  • Never Get Buddy's Video in Window for iChat AV

    Here's something basic that's got me stymied - I'm trying to set up a video chat with my daughter at school, both on iSight-equipped MacBooks. We tested the capability when she was home, and it worked great. Now, we get the chat set up, and she can s

  • Vertical lines on dual display after boot up with NVIDIA GeForce 6600 on G5

    I have just upgraded my G5 Quad from OS 10.4 to OS 10.5. Now, whenever I boot up the dual display is split into vertical stripes. I can fix it for that session by unplugging one monitor and plugging it back in again. If I boot up from the 10.5 instal

  • Adding images to a slide show

    I'm sure this has been asked a bazillion times here but I'm so new to Flash (we're talking a couple of days) that I wouldn't know what to search on much less what question(s) to ask. That having been said I'm tasked with adding images to an existing

  • Dynamically populating data for the drop down lists

    Hi, I am trying to have a mutually dependent drop down lists in my page. This is what I am trying to do - Lets consider there are 3 drop down lists (Choice - Select Many). A simple example lists are - Country, State, County. Now users selects country

  • Wifi is connected but nothing loads

    Off and on when using a Wifi in a hotel or at Starbucks etc., I have a strong network signal but nothing will load...my Touch checks for e mail but nothing happens, the weather application tries to update but nothing happens, internet errors with thi