Closing the spinning wheel gets you to the top of the page?

  • Issue description: Hi. When you read a page and scroll down, and the spinning wheel triggers, why it takes you to the top of the page? Is it supposed to work like that? I find it highly irritating for a person that tries to read the text? It should stay on the same spot no?

  • Link to the page with the widget in question: Blogi – Tipsimaatti (trigger time 15 sec)

2 Likes

A separate thing but would be also awesome to have settings for the appearance of the re-trigger button. I think it’s pretty big, and the text too is big

Hi there, @user894 :wave:

We’ve fixed it by adding this code to the Custom CSS field on the Settings tab of your widget’s settings:

.global-styles,
body {
  height: auto !important;
}

As for the Reopen Button appearance, you can control the size (button size and font size) using this CSS code:

[class*="ButtonBase__ButtonContainer-sc"] {
  scale: 0.9;
}

[class*="ButtonBase__Ellipsis-sc"] {
  font-size: 15px;
}

Please try it out and let me know if it helped :slightly_smiling_face:

1 Like