Display page URL in result description and make description clickable

I was playing with the search feature on google where you have to set it up and there are a lot of features I would live to have. Including ability to show the web address below description, the description being clickable also, but most of all the ability to set priority to pages or even make “promotional” pages in the search which can appear a different color or higher in the resault field.

1 Like

Hi there, @Rev_Devan :wave:

Great ideas, thanks for sharing! If this request gains more votes, we’ll try to consider it in the future updates :slightly_smiling_face:

Regarding the priority pages, the Quick Links option might be a workaround for this case:

And here is the CSS code to display quick links at the top and change their background:

.global-styles,
[class*='Results__Container-sc'] {
  display: flex;
  flex-direction: column-reverse;
}

.global-styles,
[class*='QuickLinks__Container-sc'] {
  position: relative;
  padding: 0 0 16px !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  border-top: none !important;
  border-bottom: 1px solid rgb(10 49 102 / 20%);
}

.global-styles,
[class*='QuickLinks__Container-sc']::after {
  position: absolute;
  top: -12px;
  left: -16px;
  z-index: -1;
  width: calc(100% + 32px);
  height: 100%;
  content: '';
  background: rgb(255 246 142);
}

Give it a try and let me know if it covered this case :slightly_smiling_face: