LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 05-23-2014, 12:35 AM   #1
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Rep: Reputation: 176Reputation: 176
I've got a black line in my Firefox address bar


It seems like it happened when I upgraded to 14.04. When I first open Firefox the line isn't there, but as soon as I enter something and the site comes up, there is a solid black line over the address bar. (see screenshot) When I put the cursor on the right end of the black line and hit the left arrow (not the backspace), the line (space by space) disappears. Any ideas? Thanks!
Attached Thumbnails
Click image for larger version

Name:	1_017.png
Views:	507
Size:	251.4 KB
ID:	15572  
 
Old 05-23-2014, 01:46 AM   #2
angel115
Member
 
Registered: Jul 2005
Location: France / Ireland
Distribution: Debian mainly, and Ubuntu
Posts: 542

Rep: Reputation: 79
Hi Gregg,

Try to close Firefox and remove your firefox settings.


To prevent any lost just rename your folder ~/.mozilla to ~/.mozilla.bak (Firefox closed)
Code:
$ mv ~/.mozilla ~/.mozilla.bak
Restart firefox after that.
 
1 members found this post helpful.
Old 05-23-2014, 01:57 PM   #3
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
what happens when you type an address and then highlight it?
 
1 members found this post helpful.
Old 05-23-2014, 10:21 PM   #4
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by angel115 View Post
Hi Gregg,

Try to close Firefox and remove your firefox settings.


To prevent any lost just rename your folder ~/.mozilla to ~/.mozilla.bak (Firefox closed)
Code:
$ mv ~/.mozilla ~/.mozilla.bak
Restart firefox after that.
Thanks, angel, but your advice was a little beyond my skill level. I wasn't sure which folder you were telling me to rename, and what the command you suggested would do, and if it was two steps I was supposed to do or just one. (At this newbie stage I need real specific step by step instructions.) Thanks.

Last edited by Gregg Bell; 05-23-2014 at 10:23 PM.
 
Old 05-23-2014, 10:23 PM   #5
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by ondoho View Post
what happens when you type an address and then highlight it?
Nothing. The address just stays highlighted.
 
Old 05-23-2014, 11:47 PM   #6
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Quote:
Originally Posted by Gregg Bell View Post
Thanks, angel, but your advice was a little beyond my skill level. I wasn't sure which folder you were telling me to rename, and what the command you suggested would do, and if it was two steps I was supposed to do or just one. (At this newbie stage I need real specific step by step instructions.) Thanks.
Regarding Angel's suggestion about the .mozilla folder, here's more info.
Any file or folder beginning with a full stop "." is called "hidden". This means that .mozilla in your home folder (/home/Gregg/ or whatever you username is) will not be seen unless you take special measures. For example if you're in your home folder and from a terminal you issue the command:
Code:
ls
you'll see a lot of files & folders but not any hidden ones so not .mozilla. If you enter the command
Code:
ls -a
you will see all your files & folders of your home directory including the hidden ones.
To change the name of any file or folder from a terminal you use the mv (meaning "move) so in linux-speak changing the name of a folder/file from A to B is moving the file from A to B. Get it?
So Angel gave you the command to do just that. His command means that you are renaming (moving) the .mozilla folder of your home directory from .mozilla to .mozilla.bak
You could change the name to aardvark but Angel's suggestion has the benefit of not taxing your memory if you want to move .mozilla.bak folder back to its original name.
Hope that's clear enough.
jdk
 
1 members found this post helpful.
Old 05-24-2014, 06:33 AM   #7
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Quote:
Originally Posted by Gregg Bell View Post
Nothing. The address just stays highlighted.
so the highlight is not black on black, and your issue is definitely not related to gui styling/theming? tried different themes? logging out/in?

Last edited by ondoho; 05-24-2014 at 06:41 AM.
 
2 members found this post helpful.
Old 05-25-2014, 10:52 PM   #8
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by jdkaye View Post
Regarding Angel's suggestion about the .mozilla folder, here's more info.
Any file or folder beginning with a full stop "." is called "hidden". This means that .mozilla in your home folder (/home/Gregg/ or whatever you username is) will not be seen unless you take special measures. For example if you're in your home folder and from a terminal you issue the command:
Code:
ls
you'll see a lot of files & folders but not any hidden ones so not .mozilla. If you enter the command
Code:
ls -a
you will see all your files & folders of your home directory including the hidden ones.
To change the name of any file or folder from a terminal you use the mv (meaning "move) so in linux-speak changing the name of a folder/file from A to B is moving the file from A to B. Get it?
So Angel gave you the command to do just that. His command means that you are renaming (moving) the .mozilla folder of your home directory from .mozilla to .mozilla.bak
You could change the name to aardvark but Angel's suggestion has the benefit of not taxing your memory if you want to move .mozilla.bak folder back to its original name.
Hope that's clear enough.
jdk
LZM jdk, Thanks for the amplification. I did indeed change .mozilla to .mozilla.bak but when I opened Mozilla (it asked if I wanted to import Chrome favorites and cookies and I said yes) the black line was still there.

And the mv thing is cool for renaming stuff, but why did .mozilla come back after I had "moved" it to .mozilla.bak ? (see screenshot)
Attached Thumbnails
Click image for larger version

Name:	1_023.png
Views:	55
Size:	208.8 KB
ID:	15604  
 
Old 05-25-2014, 10:56 PM   #9
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by ondoho View Post
so the highlight is not black on black, and your issue is definitely not related to gui styling/theming? tried different themes? logging out/in?
Thanks ondoho. When I log out and then go to log back in I get this (see screenshot) and I can't log back in.

And no, the highlight is not black on black--it disappears with the arrow keys.

I haven't done any switching of the themes or styles so I don't think that's it. (I just have a dark blue background for the desktop.)
Attached Thumbnails
Click image for larger version

Name:	Selection_020.png
Views:	49
Size:	16.3 KB
ID:	15605  
 
Old 05-25-2014, 11:28 PM   #10
jdkaye
LQ Guru
 
Registered: Dec 2008
Location: Westgate-on-Sea, Kent, UK
Distribution: Debian Testing Amd64
Posts: 5,465

Rep: Reputation: Disabled
Quote:
LZM jdk, Thanks for the amplification. I did indeed change .mozilla to .mozilla.bak but when I opened Mozilla (it asked if I wanted to import Chrome favorites and cookies and I said yes) the black line was still there.

And the mv thing is cool for renaming stuff, but why did .mozilla come back after I had "moved" it to .mozilla.bak ? (see screenshot)
It came back because Firefox always checks if you have that configuration file in your home directory. If you don't have it, it will create it and use it to store your personal stuff such as configuration settings, bookmarks, plugins, etc. Deleting the file as Angel suggested is a way of getting Firefox back to its "factory settings" and a eliminate any of your personal settings as a source of your problem. If your problem persists (and it does) then you can delete the new .mozilla file and rename .mozilla.bak to .mozilla and things will return to the way they were.
jdk
 
1 members found this post helpful.
Old 05-26-2014, 04:34 PM   #11
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
Must be a firefox thing, if it happens only in firefox.
have you searched their help database?
weird that it only appears in the url bar.
unless you get a handle on the problem there's no way to grasp it.
some kind of logic on when it happens and when not.
have you tried changing themes, just for troubleshooting? both firefox themes (complete themes, not just personas) and GUI themes (GTK i guess, whatever unity is using).
 
1 members found this post helpful.
Old 05-26-2014, 10:15 PM   #12
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by jdkaye View Post
Regarding Angel's suggestion about the .mozilla folder, here's more info.
Any file or folder beginning with a full stop "." is called "hidden". This means that .mozilla in your home folder (/home/Gregg/ or whatever you username is) will not be seen unless you take special measures. For example if you're in your home folder and from a terminal you issue the command:
Code:
ls
you'll see a lot of files & folders but not any hidden ones so not .mozilla. If you enter the command
Code:
ls -a
you will see all your files & folders of your home directory including the hidden ones.
To change the name of any file or folder from a terminal you use the mv (meaning "move) so in linux-speak changing the name of a folder/file from A to B is moving the file from A to B. Get it?
So Angel gave you the command to do just that. His command means that you are renaming (moving) the .mozilla folder of your home directory from .mozilla to .mozilla.bak
You could change the name to aardvark but Angel's suggestion has the benefit of not taxing your memory if you want to move .mozilla.bak folder back to its original name.
Hope that's clear enough.
jdk
Thanks jdk LZM extraordinaire (I have to give you a superlative title if I'm a LZM) for explaining the mysterious reappearing .mozilla folder. Thanks to your encyclopedic knowledge I have banished the upstart .mozilla.bak and restored the rightful .mozilla to its deserved eminence. (This stuff is good to know though. Getting comfortable with doing stuff in the terminal. Thanks.)
 
Old 05-26-2014, 10:23 PM   #13
Gregg Bell
Senior Member
 
Registered: Mar 2014
Location: Illinois
Distribution: Xubuntu
Posts: 2,034

Original Poster
Rep: Reputation: 176Reputation: 176
Quote:
Originally Posted by ondoho View Post
Must be a firefox thing, if it happens only in firefox.
have you searched their help database?
weird that it only appears in the url bar.
unless you get a handle on the problem there's no way to grasp it.
some kind of logic on when it happens and when not.
have you tried changing themes, just for troubleshooting? both firefox themes (complete themes, not just personas) and GUI themes (GTK i guess, whatever unity is using).
Thanks ondoho. I went to firefox help. Nothing in the data base. (Seems I am singularly blessed to have this problem.) Googled it and got this LOL (see screenshot). I don't think it's the themes because (speaking of a kind of logic) it happened to both my Xubuntu computers simaltaneously, and the only variable those computers have gone through together is the upgrade from 13.10 to 14.04.

You know, I really think it's some sort of security feature from the NSA. Because the address bar is fine and I can enter the address, but as soon as the computer goes to that address the address is blacked out, as if the computer (or NSA) doesn't want me seeing the address I've just typed in. Which I realize makes no sense now but when I first thought of it it seemed plausible.

Unless the solution descends from the stratosphere and lands in my lap, I think I'm going to bail on this. The computer functions. It's a minor inconvenience. And, who knows, some people might wish for such a cool feature.
Attached Thumbnails
Click image for larger version

Name:	Selection_025.png
Views:	52
Size:	38.5 KB
ID:	15612  
 
Old 05-27-2014, 02:29 AM   #14
ondoho
LQ Addict
 
Registered: Dec 2013
Posts: 19,872
Blog Entries: 12

Rep: Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053Reputation: 6053
is your system working perfectly (or at least normally) after the upgrade?
there is absolutely NO other issues that might be related?
are you using any weird ff add-ons?

i just tried 4 differently phrased web searches and got nothing, either.

have you opened a topic on ubuntuforums? you should.

btw, i think upgrades from one distro number to another (like, 13.xx to 14.xx) are discouraged? not sure though.
 
1 members found this post helpful.
Old 06-08-2014, 07:20 PM   #15
Habitual
LQ Veteran
 
Registered: Jan 2011
Location: Abingdon, VA
Distribution: Catalina
Posts: 9,374
Blog Entries: 37

Rep: Reputation: Disabled
Try:
Code:
    type about:config[Enter] 
    Promise to be careful 
    In the Search Bar type gfx.xrender.enabled 
    Right-click (F12) and Toggle to make it false 
    Exit Firefox. Open Firefox again.
 
2 members found this post helpful.
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Firefox 3 address bar hbar Linux - Software 1 06-16-2008 07:52 AM
Does firefox's address bar connect to google or something? dr_zayus69 General 1 04-29-2006 03:32 AM
Firefox Address bar problem iain.ross SUSE / openSUSE 2 03-23-2005 03:08 PM
Firefox - Autohighlight search and address bar notregistered Linux - General 2 03-01-2005 03:40 PM
firefox address bar marsques Linux - Software 3 07-23-2004 09:37 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 12:29 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration