Ella Theme formatting header text

Topic summary

A user is attempting to center-align specific header text in the Ella Theme but cannot locate the correct code file to modify.

Issue Details:

  • The user has identified the text element they want to center (shown in an attached screenshot)
  • They are unsure which specific file within the Ella Theme structure contains the relevant code
  • Looking for guidance on the correct file name or location to add center alignment styling

Current Status:

  • Question remains unanswered
  • No solutions or file locations have been provided yet
Summarized with AI on October 28. AI used: claude-sonnet-4-5-20250929.

Hi I’m trying to centre the highlighted text below but I can’t find the correct code file to add the centre align to. Is there a specific file name in the Ella Theme that I need to add the code to?

1 Like

Can you please share the store URL so I can better support you?

@Custom_Design_Prints can you please share this website link?

you have space for menu text as well , do it will look like this, if you remove that space from customize settings, then it will look good

please add this css to the very end of your theme.styles.css file and check

shopify admin->online store->themes->edit theme code->assets->theme.styles.css

.header-06 .wrapper-header-top {justify-content: center !important;}

Sorry where do I find the code that is in your screenshot?

@Custom_Design_Prints
shopify admin->online store->themes->edit theme code->assets->theme.styles.css

Hi @Custom_Design_Prints

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > theme-styles.css and paste this at the bottow of the file:
.header-06 .wrapper-header-top {
    justify-content: center;
}

1 Like

Go to Online store > themes > Cusomize > "Theme settings(cog icon) => “Custom CSS”

Add below CSS:

.header-06 .wrapper-header-top {
    justify-content: center;
}

Hi @Custom_Design_Prints

Thank you for your response. It’s good to know that it’s worked for you. Kindly feel free to get back to me if you need any further assistance. If helpful, please like all posts. :white_check_mark:

Best regards,
Devcoder :laptop:

1 Like