Skip to content
New

Announcement placeholder — product sites pass real copy via the announcement prop.

Learn more →

Floating badge sits in the wrong corner on mobile

On mobile, every floating badge layout displays in the bottom-left corner by default, whatever position is set for desktop.

The short answer

On mobile, every floating badge layout displays in the bottom-left corner by default, whatever position is set for desktop. This is intentional, for consistency and thumb reach.

It can be changed with custom CSS, pasted into the Custom CSS field in Settings.

Which layouts this affects

Card Badge, Compact Badge, Reviews Button, Review Request, Light Sticker, Bold Sticker, Tag Sticker, Oval Sticker and Achievement — all of them, in floating mode.

The CSS

Paste the block for the corner you want into Settings → Custom CSS. Bottom-left needs nothing, being the default.

A word on placement

Bottom-left is the default for a reason: on most sites the bottom-right corner already has a chat widget or a cookie notice, and two floating elements fighting for the same corner is worse than either.

@media (max-width: 480px) {
  .slide-in-position-container {
    padding: 20px;
    justify-content: flex-end;   /* right side */
    align-items: revert;         /* top — omit for bottom */
  }
}

Questions

Other common problems

Showing on the wrong pages or devices

Floating layouts have display rules: which pages to appear on, which to hide on, whether to show on desktop, mobile or both, and whether to appear instantly, after a delay or on scroll..