How to change the page title of the data sale opt out page

Topic summary

A user is trying to change the page title of their Shopify store’s data sales opt-out page from “Do not sell or share my personal information” to “Data Sales Opt Out,” but the changes aren’t saving.

Initial responses:

  • Multiple community members requested the store URL to investigate the issue.

Proposed solution:
EstherBui provided a CSS workaround involving:

  • Editing the base.css file in the theme code
  • Adding CSS that hides the original title and displays custom text using the :after pseudo-element

Follow-up question:
The original poster clarified they specifically want to change the browser tab title (the page’s meta title), not just the visible heading on the page. This remains unresolved, as the CSS solution only addresses the on-page display.

Status: The discussion is ongoing, with the core issue (changing the browser tab title) not yet addressed.

Summarized with AI on November 2. AI used: claude-sonnet-4-5-20250929.

My data sales and sharing opt out page is titled “Do not sell or share my personal information”.

I want to change the page title to “Data Sales Opt Out” but the change is not saving. How do I fix this ?

I can help, Kindly provide your Store URL

Hi,
Can you share store url?

Hi @Andrew551

Please share the page url that you having the issue

Best,

Daisy

https://nursecamping.com/pages/data-sale-opt-out

Hi Andrew551

  • You can try to follow this step
    Step 1: Go to Edit code
    Step 2: Find file base.css and add this code at the end of the file
h1.main-page-title.page-title.h0.scroll-trigger.animate--fade-in {
    height: 85px;
}

h1.main-page-title.page-title.h0.scroll-trigger.animate--fade-in {
    visibility: hidden;
    position: relative;
}

h1.main-page-title.page-title.h0.scroll-trigger.animate--fade-in:after {
    visibility: visible;
    position: absolute;
    top: 0;
    left: 0;
    content: "Data Sales Opt Out";
}

Best,
Esther

1 Like

Is there a way to change the name in the tab?

Andrew551_0-1737317956995.png