Iβd like to remove the transition from the drawer sidebar menu so that it just shows the links without any animation. How do I do this? (Prestige Theme)
Topic summary
A user wants to eliminate the animated transition effect from their Prestige themeβs drawer sidebar menu, making links appear instantly without animation.
Solution provided:
A support representative offered step-by-step CSS instructions:
- Navigate to Shopify Admin β Online Store β Theme β Edit code
- Locate one of these files: base.css, theme.css, styles.css, or theme.scss.liquid
- Add CSS code targeting the sidebar header elements to override the transition
The CSS snippet sets opacity: 1 and transform: translateX(0px) with !important flags to force immediate display without animation effects.
Note: The conversation text appears corrupted or reversed in places, but the core technical solution and navigation steps are clear. Screenshots were included to guide the user through the Shopify admin interface.
Hi @PM999 ,
Step 1: Go to Shopify Admin β Online Store ->Theme β Edit code
Step 2: Search file base.css, theme.css, styles.css or theme.scss.liquid
Step 3: Insert the below code at the bottom of the file β Save
.header-sidebar__main-panel,
.header-sidebar__main-panel .header-sidebar__linklist li
{
opacity: 1 !important;
transform: translateX(0px) !important;
}
Hope this can help you,
If our suggestions are useful, please let us know by giving it a like or marking it as a solution. Thank you ![]()

