Sök i support

Akta dig för supportbedrägerier: Vi kommer aldrig att be dig att ringa eller skicka ett sms till ett telefonnummer eller dela personlig information. Rapportera misstänkt aktivitet med alternativet "Rapportera missbruk".

Learn More

Google Search Layout Confirmation

  • 3 svar
  • 0 har detta problem
  • 21 visningar
  • Senaste svar av 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:

Ändrad av Buddy2014

Alla svar (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?

Ändrad av 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;
 }
}