Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

Mozilla サポートの検索

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.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Google Search Layout Confirmation

  • 3 件の返信
  • 0 人がこの問題に困っています
  • 2 回表示
  • 最後の返信者: cor-el

more options

Hello.

When performing a Google search in FF 'and' in Opera, the following is what I see:

The name of the website with the website link below it (and a colored website icon on the left side).

This would 'appear' to be a new layout since, even after clearing cookies, refreshing the page, closing the browser, and rebooting the computer, the issue persists

Q: Are other FF users seeing the same layout when performing a Google search (If not, what is the layout?).

A:

Q. Is there a way to 'revert' back to the original layout?

A:

Hello. When performing a Google search in FF 'and' in Opera, the following is what I see: The name of the website with the website link below it (and a colored website icon on the left side). This would 'appear' to be a new layout since, even after clearing cookies, refreshing the page, closing the browser, and rebooting the computer, the issue persists Q: Are other FF users seeing the same layout when performing a Google search (If not, what is the layout?). A: Q. Is there a way to 'revert' back to the original layout? A:

この投稿は Buddy2014 により に変更されました

すべての返信 (3)

more options

Yes, Google has recently changed the layout of their search result page and now you see two sections, first the URL with the website favicon in front followed by the details you previously had. You can possibly hide the first part via CSS (userContent.css or otherwise), but then you lose the menu to inspect the cached version. So best is to get used to the change as this is likely not the first time and won't be the last time to be confronted with such a change.


more options

Cor-el:

Thanks for the confirmation.

As a side note, do 'you' prefer the 'old' layout or the 'new' layout?

  • Why doesn't the link direct to an article?

この投稿は Buddy2014 により に変更されました

more options

The link is to a Google results page for the past month, so you can check whether new results appear or adjust your search terms.

The layout doesn't really matter to me as this isn't the first time I come across such a change. I use a CSS counter on the H3 element via userContent.css to keep track of the position and that still works.


/*you can add more Google domains*/
@-moz-document domain(google.com), domain(google.co.uk) {
 body{counter-reset:res}
 #search div.g h3:before {
  content:" ["counter(res)"]:"; counter-increment:res;
  color:#444; background-color:#eee; margin-right:3px; font-size:14px;
 }
}