Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Prohledat stránky podpory

Vyhněte se podvodům. Za účelem poskytnutí podpory vás nikdy nežádáme, abyste zavolali nebo poslali SMS na nějaké telefonní číslo nebo abyste sdělili své osobní údaje. Jakékoliv podezřelé chování nám prosím nahlaste pomocí odkazu „Nahlásit zneužití“.

Learn More

Get rid of the url on google search

  • 7 odpovědí
  • 1 má tento problém
  • 3 zobrazení
  • Poslední odpověď od cor-el

more options

Want to ask how to not display the url in google search on firefox browser in desktop xp and android

Want to ask how to not display the url in google search on firefox browser in desktop xp and android

Všechny odpovědi (7)

more options

Do you mean the line of green text in the individual search results displayed by Google??

more options

Can you attach a screenshot?

  • Use a compressed image type like PNG or JPG to save the screenshot
  • Make sure that you do not exceed the maximum size of 1 MB
more options

Hi jscher2000,

Yes is the green text in the individual search results

Are there ways to get rid of those green url text?

more options

Or hide them?

more options

You could use a custom style rule to hide them. What about the other links on that line, for example:

  • Company information link (some results)
  • Triangle drop-down menu
    • Cached
    • Similar
more options

jscher,

how do you do custom style rule to alter how the website on what to display on the browser? Want to get rid of the url text including the cache and similar on the triangle

And on wensite how to you do custom rule to NOT display the title logo and picture?

more options

You can right-click content and open the Inspector to see what selector an element that you want to hide has.


Add this code to the userContent.css file to hide the green text.


@-moz-document domain(www.google.com){
  #search :-moz-any(div._SWb,div._Ck) { display:none!important; }
}

The customization files userChrome.css (user interface) and userContent.css (websites) are located in the chrome folder in the Firefox profile folder.