تلاش سپورٹ

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

مزید سیکھیں

remove the hint in the address bar

  • 3 جواب دیں
  • 0 میں یہ مسئلہ ہے
  • 56 دیکھیں
  • آخری جواب بذریعہ Giuseppe

more options

Hi, is there a way to remove the hint in the address bar - "search with ... or enter the address", leave only the blinking cursor? thanks.

Hi, is there a way to remove the hint in the address bar - "search with ... or enter the address", leave only the blinking cursor? thanks.
منسلک شدہ اسکرین شاٹٹس

منتخب شدہ حل

That is the placeholder text that shows the action for the default search engine. Note that CSS code for the user interface goes in userChrome.css, userContent.css is for styling webpages including built-in about pages.

Add CSS code to the userChrome.css file in the chrome folder in the Firefox profile folder. Either of the two codes should work to hide this text.


#urlbar *|input::placeholder {
 color: transparent !important;
 opacity: 0 !important;
}
#urlbar *|input::placeholder:hover {/* add code to override this on hover */}
اس جواب کو سیاق و سباق میں پڑھیں 👍 1

تمام جوابات (3)

more options

thank you for your answer, I have userContent.css to improve the design of firefox, can you suggest a solution?

more options

منتخب شدہ حل

That is the placeholder text that shows the action for the default search engine. Note that CSS code for the user interface goes in userChrome.css, userContent.css is for styling webpages including built-in about pages.

Add CSS code to the userChrome.css file in the chrome folder in the Firefox profile folder. Either of the two codes should work to hide this text.


#urlbar *|input::placeholder {
 color: transparent !important;
 opacity: 0 !important;
}
#urlbar *|input::placeholder:hover {/* add code to override this on hover */}
more options

Thank you, cor-el !