Beyond theme update

Topic summary

A user is experiencing formatting issues after updating their Shopify theme. Their custom code changes didn’t carry over properly during the update.

Main Issues:

  • Main heading alignment is incorrect (positioned left instead of centered)
  • A ‘wholesale’ tab has disappeared from the navigation
  • Icons are appearing on the far right instead of their intended position

Suggested Solutions:

  • Use CSS to center the main heading with properties like text-align: center
  • Manually re-add the wholesale tab to the navigation/header using custom code markup
  • Consider using Shopify’s paid development services if implementation proves difficult

Current Status:
The user has made partial progress but still cannot center text or properly position icons. The discussion remains open with unresolved formatting challenges. A backup of the original theme was recommended before making further changes.

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

How do I bring my new coding across when there is an update to the theme?

I have changed everything I thought needed to be changed, however my formatting hasn’t pulled across.

It should look like this (top image), however it looks like the second one (highlighted) where the main heading is to the left.

There is no longer a ‘wholesale’ tab either.

Hi,

Hope you have backup.

You can use css

.main-heading {
    text-align: center; /* Or your specific styling */
    font-size: 2em;
    margin: 20px 0;
}

About the wholesale tab , you can add it by code (hope you have checked navigation setting) at header or navigation

Example of code

- Wholesale

If you find any difficulty in implementing code you can go for the paid Shopify developer

Thank you for your help.

I have got this far, however I cannot seem to centre the text or add
the icons to the far right?

[image: image.png]

SHould look like this

[image: image.png]