How can I move an icon to the middle of the cart drawer?

Topic summary

A user is trying to reposition a floating icon to display in the center of their cart drawer on a Shopify store. They want the icon fixed to the cart drawer only, removing its floating behavior from all other pages.

Current Issue:

  • The icon currently floats across multiple pages
  • User wants it centered and fixed exclusively within the cart drawer
  • The original post containing details was somehow deleted

Technical Details:

  • Site URL provided: b32b39-5.myshopify.com
  • CSS code snippet included (appears reversed/encoded) attempting to:
    • Hide the icon on other pages
    • Position it at 50% top/left with transform translate
    • Target class .persistent_inc_circle and .cart-reward

Status:

  • User has tagged multiple support team members (@TheoremTeam, @PageFly-Victor, @Noah) seeking assistance
  • An image attachment was included showing the desired layout
  • Discussion remains open awaiting technical guidance on the CSS implementation
Summarized with AI on November 12. AI used: claude-sonnet-4-5-20250929.

Hi,

id like this icon to display in middle area when the cart opens. I know it’s a floating icon so if it’s fixed to that area on the cart would be great and then I don’t need it floating on any other page. I’d a ctually prefer it to not float on any page and just be fixed to the cart drawer.
my site is https://b32b39-5.myshopify.com/products/tom-ford-ribbed-underwear-tank-top-1

SOMEHOW THE POST GOT DELETED

@TheoremTeam

/* Centering the icon in the middle area of the cart drawer */
.persistentcart_icn_circle {
position: absolute;
top: 20%;
left: 50%;
transform: translate(-50%, -50%);
}

/* Ensuring the icon is fixed to the cart drawer */
.cart-drawer .persistentcart_icn_circle {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}

/* Hiding the icon on other pages /
/
Assuming your cart drawer has a class ‘cart-drawer’, if not replace it with the correct class */
body:not(.cart-drawer) .persistentcart_icn_circle
}

@PageFly-Victor @PageFly-Noah @teramae @

@TheoremTeam