How do I eliminate text with black lines through the words

I am using Firefox 14.0.1 on Linux Ubuntu 11.04.
I am getting black lines through the text on some web sites. Mostly Google. How do I eliminate the lines.

A few other basic trouble shooting things you can try is this:
Run all Windows Updates, install all needed service packs, etc.
Update your graphics driver (Firefox uses your graphics card for some rendering, and an out of date graphics card driver can cause problems. [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
Update all your plugins (Flash, Java, etc.): [http://www.mozilla.org/plugincheck/ http://www.mozilla.org/plugincheck/].
Download and Install MalwareBytes Anti-Malware, run a full Scan. [http://www.malwarebytes.org/ http://www.malwarebytes.org/]. This helps check that there are no viruses on your computer causing issues. You can uninstall this program after you clean off any infections.

Similar Messages

  • Mx 340 prints with "blank lines" across the words in just about the exact spot on each page.

    I have tried all the cleaning options several times.  Updated drivers etc and it still does it.  very strange.  This stared recently
    Thanks.

    Hi Rickbibt!
    So that the Community can help you better, we will need to know the computer operating system you're using (Windows XP/Vista/7/8 or Mac 10.x). Any error messages or other details you'd like to give will also help the Community better understand your issue.
    Thanks and have a great day!

  • White screem with black lines

    Hi
    We have a 3g iphone and my husband dropped it today.  It now is just showing a white screen with black lines to the right hand side.  Have tried to reboot with home and off button but nothing seems to work. 
    Any ideas?

    Possibly the LCD Display Connector #1 is loose and needs to carefully be pushed back firmly to the Logic Board. Possibly the LCD Display is damaged and needs to be replaced. Possibly the Logic Board LCD circuitry is damaged, and you basically need a new iPhone.

  • Just bought a cannon eos 70d and every picture I take has black lines through it....?

    Is this a settings issue or is there something wrong w the camera....? Any help appreciated. Ta

    Welcome, Rachel. Can you post one or two examples of pictures with black lines through them? That might help us figure out what's wrong.
    One quick thing to try - format your memory card inside the camera and see if that helps. Yellow wrench menu #1, last item, and press SET. WARNING! This will erase all pictures on your card, so if there are important pictures on there, copy them to your computer first.

  • Thick black line through iPad 1- will screen replacement work?

    There is a 2 inch black line through the width of my iPad 1. iPad is out if warranty and apple genius told me the only fix would be to buy another one. Could I fix this issue through replacing the LCD screen? Any suggestions would help.

    Might. Might not. Could be part of the backlight is bad. Could be the equivalent of the graphics card is bad.
    Dunno how much your screen replacement is but you may want to weigh that cost against it not working and you paying and still not having a functioning device.

  • Mac book pro will not start apple logo spining wheel then gray screen then a circle  with a line through it

    need help with MacBook Pro 17inch willnot start apple logo, spining wheel, then gray screen, a circle with digional line through the circle

    Mac OS X- "Broken folder" icon, prohibitory sign, or kernel panic when computer starts
    Mac OS X- Gray screen or prohibitory sign appears during startup

  • How do I get a white background with black lines

    How do I get a white background with black lines and characters on my screen. To run the program, copy it out and delete the ` and it should go. If it does not compile on your machine, I would like to know. There is a test on about line 34 for changing the colors.
    `//Simple program to test Graphics2D.setBackground(white) obtained from BufferedImage.getGraphics()
    `import java.awt.Frame; //Object>awt.Component>Container>Window>Frame
    `import java.awt.Insets; //Object>awt.Insets
    `import java.awt.image.BufferedImage; //Object>awt.Image>awt.image.BufferedImage
    `import java.awt.Graphics; //Object>awt.Graphics
    `import java.awt.Graphics2D; //Object>awt.Graphics>Graphics2D
    `import java.awt.Color;
    `import java.awt.BasicStroke;
    `public class TstBgCol { //frame & BufferedImage in pixels & BasicStroke in points ????????????
    ` TstBgCol tstBgCol;
    ` public static void main(String[] args) {
    ` TstBgCol tstBgCol=new TstBgCol(); tstBgCol.tstBgCol=tstBgCol;
    ` tstBgCol.main2(); tstBgCol.byteBinary();
    ` }
    ` Graphics fgcontext;
    ` Frame fram; Insets insets; //borders of the Frame, Container.getInsets
    ` int bIWid=1272,bIHgt=876; //set for 1280x1024 screen on windows XP & matches paper ratio 10.6x7.3
    ` int unusedPixHgt=84;
    ` void main2() {
    ` fram=new Frame();
    ` fram.addWindowListener(new java.awt.event.WindowAdapter() { //anonymous inner class
    ` public void windowClosing(java.awt.event.WindowEvent e) { System.exit(0); }
    ` });
    ` fram.setVisible(true);
    ` insets=fram.getInsets(); //(Container)getInsets() works after displayable
    ` System.out.println("Insets l,t,r,b:"+insets.left+","+insets.top+","+insets.right+","+insets.bottom);
    ` fram.setSize(insets.left+bIWid+insets.right,insets.top+bIHgt+unusedPixHgt+insets.bottom);
    ` fgcontext=fram.getGraphics(); //creates Graphics context for this component
    ` }
    ` void byteBinary() {
    ` BufferedImage buIm=new BufferedImage(bIWid,bIHgt,BufferedImage.TYPE_BYTE_BINARY); //can be resized
    ` Graphics2D bIG2=buIm.createGraphics(); //returns Graphics2D context
    ` //change to if(true) to use either of the following two lines
    ` if(false) bIG2.setBackground(Color.white); //does not change the background color to white
    ` if(false) bIG2.setColor(Color.black); //does change the foreground color to black
    ` edgeLinesAndX(buIm,bIG2);
    ` fgcontext.drawImage(buIm,insets.left,insets.top,fram);
    ` }
    ` private void edgeLinesAndX(BufferedImage bI,Graphics2D bIG2) { //really on the edge
    `      BasicStroke strk=new BasicStroke(10f); bIG2.setStroke(strk);
    ` int x0,y0,xmx,ymx;
    ` x0=bI.getMinX(); y0=bI.getMinY(); xmx=bI.getWidth()-1; ymx=bI.getHeight()-1;
    ` bIG2.drawLine(x0+xmx,y0,x0,y0+ymx); //lo-left to up-right
    ` bIG2.drawLine(x0,y0,x0+xmx,y0+ymx); //up-left to lo-right
    ` bIG2.drawLine(x0,y0,x0+xmx,y0); //up-left to up-right
    ` bIG2.drawLine(x0,y0,x0,y0+ymx); //up-left to lo-left
    ` bIG2.drawLine(x0,y0+ymx,x0+xmx,y0+ymx); //lo-left to lo-right
    ` bIG2.drawLine(x0+xmx,y0,x0+xmx,y0+ymx); //up-right to lo-right
    ` bIG2.drawString("("+x0+","+y0+") wid="+(xmx+1)+" hgt="+(ymx+1),(xmx+1)/5,(ymx+1)/5);
    ` }
    `} //the result on my screen is a black background, why?????

    How do I get a white background with black lines and characters on
    my screen.Contrary to what you might think, the linebIG2.setBackground(Color.white);does not give the buffered image a white background. The API docs
    http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Graphics2D.html#setBackground(java.awt.Color)
    say: "Setting the background color in the Graphics2D context only
    affects the subsequent clearRect calls... " So adding a line to your
    if blocks we getif (false) {
        bIG2.setBackground(Color.white);
        bIG2.clearRect(0, 0, buIm.getWidth(), buIm.getHeight());
    if (false) {
        bIG2.setColor(Color.black);                    
    }Changing the false to true results in a white background (and black
    X and text).

  • I can't trasfer music from my library in itunes to my iphone 3GS. A black ring with a line through it comes up when i try to move music onto my iphone from itunes. How can I fix this so that I can load my phone with music?

    I can't trasfer music from my library in itunes to my iphone 3GS. A black ring with a line through it comes up when i try to move music onto my iphone from itunes. How can I fix this so that I can load my phone with music?

    How are you trying to transfer it and what are your setting on iTunes.  I'm not on a computer that has iTunes at the moment so I'm going from memory and similar issue.  If iTunes is set to sync music then I don't think you can select and drag, if set to manual manage music then you can.  Also make sure you are dragging to music on the iPhone.
    Hope this helps

  • Hi there,  I have a Brother 7820N all-in-one printing with Black line

    Hi there,
    I have Brother all-in-one that just recently started generating copies with  several black lines,  on the right side of the page,  about 1 inch from the margin.
    This happened a few years ago I was able to contact  Brother support, by phone, they answered the call and guided me through the process to eliminate the problem.  I can not get any phone numbers for Brother Customer Service any more and the copies just look terrible.
    Can anyone walk me through how to eliminiate this problem?
    thanks!
    Laura

    Open System Preferences > Print & Scan then select the Print tab then click Open Print Queue
    Delete all jobs from the print queue
    Restart your Mac and restart the printer.
    See if that made a difference.
    If not, might be corrupted print preferences ...
    Open the Finder. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following:
    ~/Library/Preferences/com.apple.print.PrintingPrefs.plist
    Click Go then move the com.apple.print.PrintingPrefs.plist file to the Trash.
    Try printing.
    message edited by:  cs

  • I have a HP Officejet Pro 8500A with black line problems

    My HP Officejet Pro 8500A has a problem when documents are placed on the automatic feed.  The printed document comes out with a black line down the middle of the new printed document.  Today it has started putting black lines down my printed pictures that come from my computer.  The computer is less than one month old.  HELP!!!

    This model has separate ink supplies and printheads.  Ink is required in all the colors to keep the printheads and plumbing from clogging.  See this page for information on how ink is used.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Printing Text with multiple Lines

    Hello,
    i want to print a list and in that is text with multiple lines.
    In the PrintPreview and in the Printout i get only one line.
    How is the best way to do this?
    Thank you,
    Markus
    Private Function Print_Remarks_Control_Get(ByVal pstrText As String) As TextBox
    Dim TextBox_Out As New TextBox
    With TextBox_Out
    .Text = pstrText
    .HorizontalAlignment = Xaml.HorizontalAlignment.Left
    .VerticalAlignment = Xaml.VerticalAlignment.Top
    .FontSize = 16
    .Margin = New Thickness(15)
    .AcceptsReturn = True
    .MinWidth = 800
    .MinHeight = 600
    End With
    Return TextBox_Out
    End Function
    Sub PrintPageList_Prepare()
    Dim i As Integer
    Dim objVM As clsTextVM
    Dim lstText_List As ObservableCollection(Of clsText)
    Dim ctrPrint_StackPanel As StackPanel
    Dim ctrPrint_Title As TextBox
    Dim ctrPrint_Description As TextBox
    Dim ctrPrint_Remarks As TextBox
    Dim objText As clsText
    mPrintPageList.Clear()
    objVM = DirectCast(Me.DataContext, clsTextVM)
    lstText_List = objVM.CustomClass_List
    ctrPrint_StackPanel = Print_StackPanel_Get()
    For i = 0 To lstText_List.Count - 1
    objText = lstText_List.Item(i)
    If objText.Name.Length > 0 Then
    ctrPrint_Title = Print_Title_Control_Get(objText.Name)
    ctrPrint_StackPanel.Children.Add(ctrPrint_Title)
    End If
    If objText.Description.Length > 0 Then
    ctrPrint_Description = Print_Description_Control_Get(objText.Description)
    ctrPrint_StackPanel.Children.Add(ctrPrint_Description)
    End If
    If objText.Remarks.Length > 0 Then
    ctrPrint_Remarks = Print_Description_Control_Get(objText.Remarks)
    ctrPrint_StackPanel.Children.Add(ctrPrint_Remarks)
    End If
    Next
    mPrintPageList.Add(ctrPrint_StackPanel)
    End Sub
    Private Sub OnGetPreviewPage(sender As Object, e As GetPreviewPageEventArgs)
    ' Das ist die MessageBox
    ' Windows.UI.Popups.MessageDialog()
    PrintPageList_Prepare()
    mPrintDok.SetPreviewPage(e.PageNumber, Me.mPrintPageList(e.PageNumber - 1))
    End Sub

    Yes, not only RichEditBox but also RichTextBlock can also do this. Besides TextBox also have TextWrapping functionality.
    -James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How do I remove the black line of the original artboard after increasing the size?

    I increased my document from 8.5"x11" to 22"x34" and a black line of the original document remains.  Can anyone tell me how to get rid of it?  It is not selectable - the word "x page" appears when my cursor hovers on it.  I'm working in C6. Thanks for your help!

    You are welcome, Posterongarth.
    Are you sure you have not created two Artboards?
    I believe someone with CS6 will have to give further answers.
    Someone?
    Edit: Cross posting.

  • How to copy Log text (with Date, Time stamp ) User IDfrom BP to Transaction

    Hi Experts,
                     Can someone guide us how  to copy Log text (with Date ,Time & User ID) fron Business partner  (Prospect) to transactions by text detrmination procedure.
    Regards,
    Basavaraj Patil

    save text
    Fill out following parameters of SAVE_TEXT function module:
    HEADER
    TDOBJECT C 10 BUT000
    TDNAME C 70 10 digit BP number
    TDID C 4 Z001
    TDSPRAS C 1 Language
    INSERT = ’X’
    LINES
    TDFORMAT TDLINE
    |
    |testtttttttttttttttttttttttt( Your text)
    I would suggest you to use some other BAPI that would attach your text to BP than SAVE_TEXT.
    If you still wanted to use SAVE_TEXT then first make sure how the TDNAME is generated. It depends on the text determination procedure. For examples, it can be guid of BP, GUID followed by date or time or else the BP number itself.
    Just go to BP transaction, double click on the text pad, it will open you the SAP Script editor. Click on menu GOTO and select Header which will give you info about your TDID, TDOBJECT, TDNAME....
    Hope this helps.

  • I have a iPod touch 5th generation and when i turn on the device, its white screen with black lines and different colors

    I can turn off the device naturally. But when i turn it on it shows all white with black lines and different colors. Is my LCD screen broken? If it is, can apple fix it?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                 
    iOS: How to back up                                                                
    - Restore to factory settings/new iOS device.             
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar                              
    If not covered by warranty
    Apple will exchange your iPod for a refurbished one for $99 for 16 GB 5G and $149 for the other 5Gs. They do not fix yours.
      Apple - iPod Repair price                             

  • I updated my computer to the new software and now the iPhoto has a circle with a line through it.  When I try to update, it pops up to say "These apps cannot be accepted by your apple id". Then will say "update unavailable with this apple id" how do i fix

    I updated my computer to the new software and now the iPhoto has a circle with a line through it.  When I first try to open it the pop us says: "You can't use this version of the application "iPhoto" with this version of OS X. Version: 9.2.1"  When I try to update, it pops up to say "These apps cannot be accepted by your apple id - These apps were already assigned to another Apple ID and they will be available in that Apple ID's purchases list.  If you don't have access to that Apple ID and want to receive future updates, you will need to purchase the application".  I checked and there is nothing under the "purchases" in my App store.  Then will say "update unavailable with this apple id - This update is not available for this Apple ID either because it was bought by a different user or the item was refunded or canceled." Then the third pop up says "We could not complete your request. There was an error in the App Store.  Please try again".  Just want to know how do to fix.

    After I upgraded to Mavericks I was also having this message when I tried to update. There was a previous post about this problem which offered this simple solution which worked for me:
    b0n0b0
    Re: Recently upgraded to Maverick from SnowLeopard. Unable to get updates from App store.
    Mar 15, 2014 9:05 AM (in response to Terence Devlin)
    Got it! Thanx.  What I did was go to my account, check that they had my new ID and Password which they did, then hit reset button. All fixed.

Maybe you are looking for

  • I can hear sound, but no pictures, on some news internet locations.

    Greetings to all, I have a Windows 7 64--bit laptop. I can hear sound but no pictures. Why is that ? Thank you. Ldxrunner. Solved! Go to Solution.

  • Restrict selection using wildcards

    hie guys I have a select statement where i need to restrict the selected items where values in a field are ZP%   SELECT * FROM marc INTO xmarc WHERE matnr IN material                                  and werks ne 'ZP%'.     IF sy-subrc = 0.       APP

  • Forums?

    Rite ppl, I really need to build a forum quick, but have no clue how to do it. I've downloaded phpBB but haven't a clue what to do with it. I also found a site called myfastforums.org which claim to host a forum for you for free. They have some adver

  • Calculating the next meeting date and the number of days until that

    Hi all, I created a meeting log page and I made a query that returns the most recent meeting date: to_char("MFR_MEETING_LOG_MAIN"."ML_MEETING_DATE",'MM/DD/YYYY') What I want to do is to calculate the next meeting date which is 6 month after the most

  • How to recover recovery data.

    i've got a presario cq42 notebook. i made a mistake deleting the recovery data(drive:d). After that, sometimes, the computer refuse to startup. It means not be able to start up. Please, assist me this problem. Regards.