Sticky Bar sharing unwanted price on website

Topic summary

A user encountered an unwanted price display in the sticky bar that appears when scrolling past the product section on their Shopify store using the Prestige theme. They wanted to keep the sticky bar but remove the price information.

Solution provided:

  • Add custom CSS code to the theme.css file to hide the price element using display: none !important;
  • The initial fix successfully removed the price display

Follow-up request:

  • User also asked to remove the “Add to Cart” button from the sticky bar
  • Additional CSS code was provided targeting the buy-buttons element within the product-sticky-bar

Status: The issue appears resolved, with a helper confirming the price has been removed and checking if further assistance is needed. Both solutions involve adding CSS snippets to hide specific elements rather than theme settings adjustments.

Summarized with AI on October 31. AI used: claude-sonnet-4-5-20250929.

Hi all,

I’ve made some adjustments to our Neilo website, and now when a user scrolls down past the product section, there is a sticky bar that shows up with the price.

I’m happy with the sticky bar being there, just not with the price being shown. I can’t seem to find anywhere in the settings. Using Prestige theme.

See here: A World First All-in-One Stabilising Unit. | NEILO M5111 Stabilising Grader

I’d appreciate any help here :slightly_smiling_face:

Hi @toddhart

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.css and add this code at the end of the file

price-list.price-list {
    display: none !important;
}

Result

Best,

Liz

Thanks, that works perfect. Also, how do I remove the add to cart button there too.

Hi @toddhart

You can try to follow this step
Step 1: Go to Edit code
Step 2: Find file theme.css and add this code at the end of the file

product-sticky-bar.product-sticky-bar.is-visible .buy-buttons {
    display: none !important;
}

Result

HI @toddhart

I see the product price in the sticky bar has been removed
Did you get the right solution
Do you need any further assistance