Welcome to the Power Users community on Codidact!
Power Users is a Q&A site for questions about the usage of computer software and hardware. We are still a small site and would like to grow, so please consider joining our community. We are looking forward to your questions and answers; they are the building blocks of a repository of knowledge we are building together.
Post History
Adding the following code block to one's userContent.css file will remove the clutter: /* removing clutter from new tab */ @-moz-document url("about:privatebrowsing") { .promo { displ...
Answer
#5: Post edited
Adding the following code block to one `userContent.css` will remove the clutter:- ```
- /* removing clutter from new tab */
- @-moz-document url("about:privatebrowsing") {
- .promo {
- display: none !important;
- }
- .info {
- display: none !important;
- }
- .logo-and-wordmark {
- display: none !important;
- }
- .search-inner-wrapper {
- display: none !important;
- }
- }
- ```
- (instructions how to find end edit the file are essentially the same as for `userChrome.css`, which can be found in this fantastic answer https://powerusers.codidact.com/posts/285411/285412#answer-285412)
- Adding the following code block to one's `userContent.css` file will remove the clutter:
- ```
- /* removing clutter from new tab */
- @-moz-document url("about:privatebrowsing") {
- .promo {
- display: none !important;
- }
- .info {
- display: none !important;
- }
- .logo-and-wordmark {
- display: none !important;
- }
- .search-inner-wrapper {
- display: none !important;
- }
- }
- ```
- (instructions how to find end edit the file are essentially the same as for `userChrome.css`, which can be found in this fantastic answer https://powerusers.codidact.com/posts/285411/285412#answer-285412)
#4: Post edited
- Adding the following code block to one `userContent.css` will remove the clutter:
- ```
- /* removing clutter from new tab */
- @-moz-document url("about:privatebrowsing") {
- .promo {
- display: none !important;
- }
- .info {
- display: none !important;
- }
- .logo-and-wordmark {
- display: none !important;
- }
- .search-inner-wrapper {
- display: none !important;
- }
- }
- ```
(instructions how to find end edit the file can be found in this fantastic answer https://powerusers.codidact.com/posts/285411/285412#answer-285412)
- Adding the following code block to one `userContent.css` will remove the clutter:
- ```
- /* removing clutter from new tab */
- @-moz-document url("about:privatebrowsing") {
- .promo {
- display: none !important;
- }
- .info {
- display: none !important;
- }
- .logo-and-wordmark {
- display: none !important;
- }
- .search-inner-wrapper {
- display: none !important;
- }
- }
- ```
- (instructions how to find end edit the file are essentially the same as for `userChrome.css`, which can be found in this fantastic answer https://powerusers.codidact.com/posts/285411/285412#answer-285412)
#3: Post edited
- Adding the following code block to one `userContent.css` will remove the clutter:
- ```
- /* removing clutter from new tab */
- @-moz-document url("about:privatebrowsing") {
- .promo {
- display: none !important;
- }
- .info {
- display: none !important;
- }
- .logo-and-wordmark {
- display: none !important;
- }
- .search-inner-wrapper {
- display: none !important;
- }
- }
```
- Adding the following code block to one `userContent.css` will remove the clutter:
- ```
- /* removing clutter from new tab */
- @-moz-document url("about:privatebrowsing") {
- .promo {
- display: none !important;
- }
- .info {
- display: none !important;
- }
- .logo-and-wordmark {
- display: none !important;
- }
- .search-inner-wrapper {
- display: none !important;
- }
- }
- ```
- (instructions how to find end edit the file can be found in this fantastic answer https://powerusers.codidact.com/posts/285411/285412#answer-285412)
#2: Post edited
- ```
- /* removing clutter from new tab */
- @-moz-document url("about:privatebrowsing") {
- .promo {
- display: none !important;
- }
- .info {
- display: none !important;
- }
- .logo-and-wordmark {
- display: none !important;
- }
- .search-inner-wrapper {
- display: none !important;
- }
- }
- ```
- Adding the following code block to one `userContent.css` will remove the clutter:
- ```
- /* removing clutter from new tab */
- @-moz-document url("about:privatebrowsing") {
- .promo {
- display: none !important;
- }
- .info {
- display: none !important;
- }
- .logo-and-wordmark {
- display: none !important;
- }
- .search-inner-wrapper {
- display: none !important;
- }
- }
- ```